Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
72 views

How to split Tamil characters in a string in PHP

How do I split Tamil characters in a string? When I use preg_match_all('/./u', $str, $results), I get the characters "த", "ம", "ி", "ழ" and "்". How do I get the combined characters "த", "மி" and ...
5
votes
1answer
96 views

How to split a string without spaces of continuous delimiter

how to split the string like "x~y~z~~~~~" with delimiter ~ ,we have to split this as 7 elements. but while processing with string.split("~") method it gives 3 strings only
4
votes
2answers
375 views

Split string using regular expression in Go

I'm really new to Go, and have been enjoying it so far. I'm trying to find a good way to split a string using a regular expression instead of a string. Thanks ...
2
votes
1answer
44 views

Finding a repeating pattern in a given string

I have a networkstream (using C#/VB.NET). while on reading values coming like this: &% 68 kg K A&% 23 kg K A&% 174 kg K A &% 68 kg ...
2
votes
3answers
83 views

How to get the first and the last parts of string separated by a space

If I have a name consists of more than one part separated by a space, and I want to get: the first name + " " + the last name. Is there any way to do that. No rules except that the names ...
2
votes
4answers
99 views

Split string into array

In JS if you would like to split user entry into an array what is the best way of going about it? For example: entry = prompt("Enter your name") for (i=0; i<entry.length; i++) { entryArray[i] = ...
2
votes
5answers
200 views

How can I split a word from within brackets using the Split method in C#?

How can I split a word from within brackets like: (animal) I need to take only the word "animal" using C# split.
2
votes
4answers
334 views

How to split a CamelCase string in its substrings in Ruby?

I have a nice CamelCase string such as ImageWideNice or ImageNarrowUgly. Now I want to break that string in its substrings, such as Image, Wide or Narrow, and Nice or Ugly. I thought this could be ...
2
votes
4answers
795 views

LINQ to Entities: Why can't I use Split method as condition?

I have the following LINQ query: var aKeyword = "ACT"; var results = from a in db.Activities where a.Keywords.Split(',').Contains(aKeyword) == true select a; Keywords is ...
2
votes
2answers
1k views

T-SQL Split string into many-to-one relationship?

I have the following SQL script: DECLARE @temp table ( ID int IDENTITY(1, 1), data nvarchar(100) ) INSERT INTO @temp (data) VALUES ('a,b,c') INSERT INTO @temp (data) VALUES ('d,e,f') SELECT ...
1
vote
4answers
91 views

how to make string as array in java script?

I have a string value like: 1,2,3;4,5,6;7,8,9;a,b,c;d,e,f;g,h,i I need to convert it into array in JavaScript like 1 2 3 4 5 6 7 8 9 etc. Can any one please suggest me a way how to do this?
1
vote
3answers
138 views

Split strings by white spaces in C#

I want to split a string by white spaces except if the text inside the string is in double quotes ("text") or single quotes ('text'). I am doing it with this function: public static string[] ...
1
vote
3answers
56 views

Error when splitting string with string

How can I split a string with a string? string PostBuffer = "This Is First----WebKitFormBoundaryBBZbLlWzO0CIcUa6This Is Last" string[] bufferarray = ...
1
vote
4answers
798 views

How to split a string in bash delimited by tab

I'm trying to split a tab delimitted field in bash. I am aware of this answer: how to split a string in shell and get the last field But that does not answer for a tab character. I want to do get ...
1
vote
4answers
67 views

String matching and extraction

I have a string like "ab.cde.fg.hi", and I want to split it into two strings. "ab.cde.fg" ".hi" How to do so? I got some code written that will get me the 2nd string but how do I retrieve the ...
1
vote
7answers
736 views

Converting string to byte array in C# (CSV)

I wrote a function to convert byte[] to string, and I add ";" after each byte. Now I want to convert this string to byte[] by splitting the string (similar to a CSV string). public string ...
1
vote
5answers
162 views

need help with splitting a string in python

I am trying to tokenize a string using the pattern as below. >>> splitter = ...
1
vote
1answer
1k views

Java StringTokenizer, empty null tokens

I am trying to split a string into 29 tokens..... stringtokenizer won't return null tokens. I tried string.split, but I believe I am doing something wrong: String [] strings = line.split(",", 29); ...
0
votes
3answers
98 views

How to randomly access nth element in StringTokenizer

Is there anyway we can directly access a certain(lets say 20th) element in a stringTokenizer. Every now and then I need only a certain element from it and do not need others, yet I have to traverse ...
0
votes
1answer
87 views

Ready method that split big string into 3 paragraphs C#

i need to split a large string to 3 paragraphs each not less than 1000 character length with next and previous buttons Any help
0
votes
2answers
86 views

JavaScript string split by Regex results sub-strings include empty slices

I've the following string splitting JavaScript code: var formula = "(field1 + field2) * (field5 % field2) / field3"; console.log(formula.split(/[+(-)% *\/]/)); And the result is out of expectation: ...
0
votes
7answers
110 views

How do I convert a string into an array?

i have a string like this string strings=" black door,white door,red door " now i want to put this string into array. I use split myarray = strings.split(',') then array look like this. ...
0
votes
2answers
157 views

ASP.NET w/ VB.NET - Winforms to Web - NullReferenceException Error on string split / string builder

Background: I have a winForm app that registers a user in the database based on the information provided, auto-generates a random password and username, and e-mails the user a link to take an ...
0
votes
3answers
87 views

Regex an enum from MySQL

I'm trying to regex a string that comes from a mysql enum by using SHOW COLUMNS FROM Table. I get the following string and want to parse the words inside it: 'Apple','Banana','Other ...
0
votes
3answers
119 views

regular expressions in java

I have a problem where I need to tokenize my string (using java code) so that it is split into a String array. Each token in this array should be either a word, number or dimensions of the form (23 x ...
0
votes
1answer
164 views

How to read values from file. tokenizer

I have a file in which each line contains two numbers. The problem is that the two number are separated by a space, but the space can be any number of blank spaces. either one, two, or more. I want to ...
0
votes
3answers
890 views

How to split a string with a delimiter larger than one single char?

Supposing I have this: "foo bar 1 and foo bar 2" How can I split it into: foo bar 1 foo bar 2 ? I tried strtok() and strsep() but neither worked. They don't recognize "and" as delimiter, they ...
-1
votes
2answers
117 views

Split line with perl

I have a multiline credits with missing a few commas: rendező: Joe Carnahan forgatókönyvíró: Brian Bloom, Michael Brandt, Skip Woods zeneszerző: Alan Silvestri operatőr: Mauro Fiore producer: Stephen ...