The string-split tag has no wiki summary.
0
votes
3answers
59 views
Splitting string into different line lengths
I'm trying to split a variable length string across different but predefined line lengths. I've thrown together some code below which fails on key error 6 when I plonk it into Python Tutor (I don't ...
0
votes
2answers
90 views
Split Multilingual String into words c#
I'm using return Regex.Split(s, @"\W") to split string into words.
my input string is 怀了双胞胎,顺产还是剖腹产比较好呢?[Pregnant with twins, natural delivery or caesarean section is good].
its working fine for ...
2
votes
1answer
67 views
Java String Split by “|”
I am trying to parse some data using Java which is separated by '|' sequence. Below is an example of the data.
String s = "111206|00:00:00|2|64104|58041";
String [] temp = s.split("|");
for(String p: ...
1
vote
1answer
48 views
Split String multiple char syntax
I want to split the input String values separated by one of these char
,
;
blankspace
\
/
in a double array
My code for , is
String valueS[] = input.split(",");
int n = valueS.length;
...
0
votes
0answers
29 views
REGEX on android list targets for id / abis combinations
Given the text below: I need to know if there is a regex that can give me a list of strings that is ID/ABI for each abi in the list.
id: 25 or "android-17"
Name: Android 4.2.2
Type: Platform
API ...
0
votes
1answer
55 views
excel formula help to split complex names
I have been tasked with some string manipulation and today must be my bad head day as it is proving more difficult than I expected.
I have to take the initials of the first and second and third name ...
0
votes
2answers
211 views
How to split a JQuery autocomplete multiple value string
I have a JQuery autocomplete working with the ability to hit the "Add" button and having the user input show up on the screen in a JQuery sortable list, but I want to separate the inputted string into ...
0
votes
4answers
77 views
Splitting a string java
I have a string in format:
<+923451234567>: Hi here is the text.
Now I want to get the mobile number(without any non-alphanumeric characters) ie 923451234567 in the start of the string ...
0
votes
4answers
41 views
JS - go throught a text, make array entry after each “.”
I'm new to JavaScript. I have a text with serveral sentences and I want each sentence to be an entry in a array named sentences and alert("new entry was made"). So I have to loop through and whenever ...
0
votes
2answers
67 views
Read structure from file c#
I'm trying to read a structure of a text file in a certain way. The text file is kind of a user-friendly configuration file.
Current structure of file (structure can be changed if necessary):
...
-2
votes
2answers
70 views
How to split a string at a . to parse to an integer from user input? (ex. IP Address that will be formatted with the . already in it)
string strSeverIP = Console.ReadLine();
string serverIpAddress = String.Split(".", strSeverIP);
I'm trying to split this string at the period of server addresses so that I can parse each individual ...
0
votes
2answers
60 views
Splitting strings by multiple characters into separate Lists<>
I'm reading in a textfile using StreamReader and I need to split the string into separate pieces which will go into their respective Lists.
For example, the string would be the following:
'To ...
-3
votes
2answers
40 views
Breaking tweet into sub-strings and display in widget [closed]
These days I'm trying to make a scoreboard widget for my school's cricket match. And I Already created a widget which get's messages from twitter. now i need to separate the message into pieces and ...
0
votes
7answers
123 views
how to split a string TWICE
I've been trying to split a string twice but I keep getting the error "Index was outside the bounds of the array".
This is the string I intend to split:
"a*b*c*d*e^1*2*3*4*5^e*f*g*h*i^"
such that ...
0
votes
1answer
89 views
Javascript - String split does not work well
I am making a script which receives a String and separate it on smaller Strings.
Ex: "This is a long sentence, and I will separate it into smaller parts. Lalala"
It will return "This is a long ...
2
votes
6answers
105 views
How to verify if a string.split() returns null
I am reading data from a file:
Some Name;1|IN03PLF;IN02SDI;IN03MAP;IN02SDA;IN01ARC
Some Other Name;2|IN01ALG;IN01ANZ
Another Name;3|
Test Testson;4|IN03MAP;IN01ARC;IN01ALG
I use string.split() for ...
0
votes
4answers
90 views
A simple string.split() gone horribly wrong [duplicate]
This code seems to be broken but I can't tell why:
System.out.println(line);
// prints: Some Name;1|IN03PLF;IN02SDI;IN03MAP;IN02SDA;IN01ARC
String args[] = line.split("|");
String ...
0
votes
3answers
426 views
How to select a value from a comma delimited string?
I have a string that contains comma delimited text. The comma delimited text comes from an excel .csv file so there are hundreds of rows of data that are seven columns wide. An example of a row from ...
2
votes
3answers
121 views
What is the most performant method for splitting strings?
Code
create table ExampleTable
(
Name varchar(500)
CultureCode(5)
)
insert into ExampleTable values('Dit is een test', 'nl-NL')
insert into ExampleTable values('This is a test', 'en-GB')
...
1
vote
1answer
404 views
String split on comma exclude comma in double quote and split adjacent commas
I want to split a string based on comma excluding one which are in double quotes, also if there is any adjacent commas they should be counted as separate tokens
I am able to do string split on comma ...
1
vote
4answers
115 views
split a string by any symbol
What is the regex that I should pass with String.split() in order to split the string by any symbol?
Now, by any symbol I mean any of the following:
`~`, `!`, `@`, `#`, ...
Basically any ...
0
votes
1answer
121 views
What is the equivalent of this tokenizer code in C#?
This is a java code for android. I'm trying to convert this to windows c#. I tried using split but I don't know how to go to the next element.
StringTokenizer st = new StringTokenizer(source, ...
0
votes
2answers
134 views
String Split based on Ç
I want to split a string based on Ç (Latin Capital letter C with cedilla)
so far i have tried string.split, Splitter.on(pattern).split(line)
Ç has unicode 00C7
0
votes
1answer
96 views
Adding Some Feature in JQuery UI Autocomplete
This is my Jquery Script Code.
<script type="text/javascript">
var months = ['01 - January', '02 - February', '03 - March', '04 - April', '05 - May', '06 - June', '07 - July', '08 - ...
0
votes
2answers
352 views
How can i split a String and use them in a Loop in VB?
i get a string whith email adresses, seperated by a ";" which look like this:
geve@krag.de;;;Tobias@nxs.de;Wissel@weg.de;Sand@nex.de;Claudia@bea.de;;
i want to send an appointment to these email ...
0
votes
4answers
66 views
Split between two chars in java
I want to split a string between two semicolons (:).
i.e.,
BOOLEAN: Mr. Coffee -
Recall:8a42bb8b36a6b0820136aa5e05dc01b3:1346790794980
I am trying
split("[\\:||\\:]");
but its not ...
4
votes
2answers
166 views
Currency values string split by comma
I have a String which contains formatted currency values like 45,890.00 and multiple values seperated by comma like 45,890.00,12,345.00,23,765.34,56,908.50 ..
I want to extract and process all the ...
0
votes
1answer
377 views
Tokenising a String containing empty tokens
I have a seemingly simple problem of splitting a comma separated String into tokens, whereby the output should include empty tokens in cases where:
The first character in the String is a comma.
The ...
1
vote
4answers
232 views
string.Split() and an if statement
I have a text file which I split with a \n.
text file (test) reads
1
2
3
4
now the confusing part.
code
string test = System.IO.File.ReadAllText(@"C:\Custom tests\"+testselect.Text+".txt");
...
0
votes
3answers
178 views
Vector Push_back [duplicate]
Possible Duplicate:
Empty check with string split
I split the below string with '&' and saved it in a vector
const vector<string> vec = ...
0
votes
2answers
129 views
Empty check with string split
vector<string> SplitString (string aString,char *sep)
{
vector<string> vec;
char * cstr,*val,*p;
string str = aString;
cstr = new char [str.size()+1];
strcpy (cstr, ...
0
votes
3answers
119 views
unable to split a string that is parsed from a webpage?
Here I am parsing a webpage and getting the 'name' field from that webpage. Here is the code that does the parsing:
foreach($dom->getElementsByTagName('table') as $table) {
...
0
votes
4answers
194 views
Regex to split a string using a character preceded by a particular character
I have a string which i want to split using a character preceded by a particular character
Foo:xxxxxxxxx:Bar:xxxxxxxx:FooBar:xxxxxxx
I want to split it using colon : coming after x.
I tried x: ...
0
votes
6answers
100 views
How can I split this string in JavaScript?
I have strings like this:
ab
rx'
wq''
pok'''
oyu,
mi,,,,
Basically, I want to split the string into two parts. The first part should have the alphabetical characters intact, the second part should ...
14
votes
2answers
436 views
Why does str.split not take keyword arguments?
I came across this - in my view - strange behaviour:
"a b c".split(maxsplit=1)
TypeError: split() takes no keyword arguments
Why does str.split() not take keyword arguments, even though it would ...
0
votes
1answer
2k views
String.split() JavaScript method is not working in firefox [closed]
I am trying to split a string in javascript . it works fine in chrome, but it is not working in firefox
code
var a="1#abc";
var b=a.split('#');
The error on cole is TypeError: response.split is ...
4
votes
2answers
201 views
Regex split for words containing periods
Can someone tell me how to modify this regex to allow periods in a string?
string[] parts = Regex.Split(s, @"\b|[^\.#_a-zA-Z0-9()=><!%]");
If I provide the string: "HELLO ABC.123"
This regex ...
3
votes
5answers
345 views
How to Split a string in java based on limit
I have following String and i want to split this string into number of sub strings(by taking ',' as a delimeter) when its length reaches 36. Its not exactly splitting on 36'th position
String ...
0
votes
4answers
148 views
Java String.split mehod don't work well [duplicate]
Possible Duplicate:
Split string with | separator in java
I'm little confused as when i do the following:
String example1 = "Hello|World";
String[] splitRes;
splitRes = ...
19
votes
3answers
20k views
bash split string into array
In a bash script I would like to split a line into pieces and put them into an array.
The line:
Paris, France, Europe
I would like to have them in an array like this:
array[0] = Paris
array[1] = ...
7
votes
6answers
261 views
the most efficient way to separate string
I have this string:
"B82V16814133260"
what would be the most efficient way to get two strings out of it:
left part String: "B82V"
rigth part string: "16814133260"
The rule is this: take all ...
0
votes
2answers
2k views
String split in MySQL using REPLACE and SUBSTRING_INDEX
I need to split this:
a:6:{s:8:"address1";s:11:"2 Bourke ...
0
votes
4answers
59 views
Having problems querying strings with _ in them - Python
I have a list of files
DIRLIST = ['201008190000_15201_NC.GZ', '201008190000_15202_NC.GZ',
'201008190000_16203_NC.GZ', '201008200000_15201_NC.GZ', '201008200000_15202_NC.GZ',
...
4
votes
4answers
247 views
Splitting a string to do some math yields strange result, in Python
So I'll admit that this is a homework assignment, but I'm not asking you all to do it for me, I'm just looking for some guidance. We need to make a Python program to accept a time in Hours:Minutes ...
1
vote
1answer
212 views
Haskell pattern matching concept behind text splitter
I want to know the pattern matching concept behind this code snippet:
split :: String -> Char -> [String]
split [] delim = [""]
split (c:cs) delim
| c == delim = "" : rest
| ...
1
vote
1answer
4k views
How to split a string into array based on delimitter in VB.Net
How can I assign a split parts of a string into an array list directly ?
String format:
ABC;PQR;XYZ
9
votes
2answers
344 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 ...
1
vote
4answers
473 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?
2
votes
1answer
160 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
...
1
vote
3answers
768 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[] ...



