string-manipulation

Split a text file in PHP

How can I split a large text file into separate files by character count using PHP? So a 10,000 character file split every 1000 characters would be split into 10 files. Further, can I split only after a full stop is found? Thanks. UPDATE 1: I like zombats code and I removed some errors and have come up with the following, but does anyo...

What is the most efficient way to separate the int from this string?

I have a string in this format: "ABC_123_" I want to end up with and integer variable that is just the number portion of the string. What is the most efficient way to accomplish that in C#? ...

How to edit the ASP.NET HTML Body variable?

body = "<HTML>" & _ "<HEAD></HEAD>" & _ "<BODY>" & _ " <Font Face=Arial Size=5><B>" & _ " This is a test Email" & cEmail & _ " </B></Font><BR>" & _ " <H3><A Href=http://www.website.com&gt;Click here</a>" & _ " to go to website.com</h3>" & _ "</BODY>" & _ "</HTML>" this a ASP variable with html text it works well i just want t...

PHP - Remove last character if it's a period?

How to remove the last character only if it's a period? $string = "something here."; $output = 'something here'; ...

get city, state or zip from a string in python

I'd like to be able to parse out the city, state or zip from a string in python. So, if I entered Boulder, Co 80303 Boulder, Colorado Boulder, Co 80303 ... any variation of these it would return the city, state or zip. This is all going to be user inputted data and inputted in one text field. ...

Help with Python strings

I have a program which reads commands from a text file for example, the command syntax will be as follows and is a string 'index command param1 param2 param3' The number of parameters is variable from 0 up to 3 index is an integer command is a string all the params are integers I would like to split them so that I have a list as fol...

How to mix std::string with Win32 functions that take char[] buffers?

There are a number of Win32 functions that take the address of a buffer, such as TCHAR[256], and write some data to that buffer. It may be less than the size of the buffer or it may be the entire buffer. Often you'll call this in a loop, for example to read data off a stream or pipe. In the end I would like to efficiently return a strin...

Using Ruby, how can I take a string and insert pipes between the words?

Let's say I have this string: "birthday cake is my favorite" I need to convert that to: "birthday|cake|is|my|favorite" How would I go about doing that with Ruby? ...

String concatenation in Jinja

I just want to loop through an existing list and make a comma delimited string out of it. Something like this: my_string = 'stuff, stuff, stuff, stuff' I already know about loop.last, I just need to know how to make the third line in my code below WORK. {% set my_string = '' %} {% for stuff in stuffs %} {% set my_string = my_string + s...

jQuery String Manipulation

Hi, Hoping someone can assist with some string manipulation using jQuery. Basically, within a .click(function(){ I have the following string variable: f?p=251:1007:3642668879504810::::: What I need to do using jQuery is basically remove the number 3642668879504810 (which changes, i.e is a random number so cannot match on this number...

Fastest way to convert string like id=1&type=2 into array in PHP?

I need to change it into : $arr['id']=1; $arr['type']=2; ...

Formatting multiple bound field in one TextBlock in XAML

I have 2 fields that I'd like to format into a TextBlock, example: "{0} of {1} hours used". Currently have: <TextBlock Text="{Binding HoursEntered}" /> <TextBlock Text=" of " /> <TextBlock Text="{Binding EstimatedHours}" /> <TextBlock Text=" hours used " /> Was looking at StringFormat for a single field, however this appears to on...

Can this snippet be further optimized / organized?

From my related question here at SO I've come up with the following PHP snippet: $url = parse_url($url); if (is_array($url)) { $depth = 2; $length = 50; if (array_key_exists('host', $url)) { $result = preg_replace('~^www[.]~i', '', $url['host']); if (array_key_exists('path', $url)) { ...

elegant string splitting

I am looking for a nicer way of accomplishing the following code block which is part of an EmailAddress class/object. To my thinking, the parts array is clunky and I'm wondering if there isn't a one liner using tuples or Linq that would tidy it up a bit. Also, what would be a better property name than "Alias" for the first part of the e...

Integrating phrase translation with String.Format

I have a phrase in English that looks like this: "I have {0} dogs and {1} cats". In code, I provide the data with a String.Format: String.Format("I have {0} dogs and {1} cats", 1, 2) So the output is this: "I have 1 dogs and 2 cats". The problem that I'm trying to solve is the phrase "I have {0} dogs and {1} cats" needs to be transla...

How to parse complex string with C++ ?

I'm trying to figure out how could I parse this string using "sstream" and C++ The format of it is: "string,int,int". I need to be able to assign the first part of the string which contains an IP address to a std::string. Here is an example of this string: std::string("127.0.0.1,12,324"); I would then need to obtain string someSt...

Extract string from between quotations

I want to extract information from user-inputted text. Imagine I input the following: SetVariables "a" "b" "c" How would I extract information between the first set of quotations? Then the second? Then the third? ...

String manipulation

Hie guys i have this assignment where im supposed to extract headstone data from an inscription file (structured text file).From this file im supposed to extract the name of a deceased person, date of birth (or age) and also personal messages.The application should be able to analyse a raw text file and then extract information and displ...

PHP: how do you specify that you do not want a string evaluated?

I have some php code in a database like so $x = "<?php some code here ?>"; but I want to output that whole line to the browser without php evaluating it. Right now it is evaluating it unfortunately. I thought about escaping it but that didn't work. How might a person accomplish this? Thanks EDIT: <?php echo '<? hey ?>'; echo "<do...

How to get the sub-string lying in between two sub-strings in C ?

I have a packet capture code that writes http payload into a file. Now i want to extract the URL information from these dumps. For each packet , the payload begins like this. GET /intl/en_com/images/logo_plain.png HTTP/1.1..Host: www.google.co.in..User-Agent: Mozilla/5.0 I would like to extract : the string between "GET" an...