Tagged Questions
4
votes
4answers
61 views
Tokenize string with space seperated values unless values are wrapped in single quotes.
can any body tell me to split a string in java script with space which is not within single quote.
Like if string is
"0 60 120 180 'node name' 2 34 45 12"
then it will tokenize such that
...
1
vote
3answers
64 views
Tokenizer/Split in c#?
I am trying to turn this from java to C# and have done almost all of it except the tokenizer. I know that you use split in C# but I cannot seem to figure it out. The program needs to split up the ...
3
votes
2answers
67 views
Split string with alternative comma (,)
I know how to tokenize the String, but the Problem is I want to tokenize the as shown below.
String st = "'test1, test2','test3, test4'";
What I've tried is as below:
st.split(",");
This is ...
0
votes
1answer
49 views
General tokenizer
I am looking for some libraries which would help me do the following:
For a given input text document:
1. Convert the document to lower case (Easy. Solved with toLowerCase function)
2. Remove symbols
...
-4
votes
2answers
128 views
Split the words using string tokenizer if it is followed by two or more space/whitespace in java? [duplicate]
In my string, i want to tokenize string on the basis of two or more spaces.
E.x.
String str = "I am Chaitanya Gadam. Split this string."
StringTokenizer tokenizer = new ...
4
votes
2answers
145 views
Java/clojure: Multiple character delimiter, and keep the delimiter
I'm working on a project in clojure, which can interop with any java classes, so the answer to my question could be for either java or clojure.
Basically I need to be able to split a string into ...
2
votes
2answers
200 views
Perl split() without removing delimiter
I'm trying to parse c functions declarations. I want to get arrays of tokens from string.
so i use split:
$function = "int func1( int * , const float, const char[])"
print ...
0
votes
2answers
191 views
ant - tokenise string into substrings using regex
I have an input string of the format abc;def;ghi;jkl;........ and so on. the smallest allowed input string is abc, while there is no limit on max number of tokens. Also the length of each token is NOT ...
2
votes
2answers
1k views
Matlab split sring multiple delimiters
I have a cell list of strings like this:
cellArr =
'folderName_fileName_no.jpg',
'folderName2_fileName2_no2.jpg'
I want to get it like this
{folderName, fileName, no},
{folderName2, ...
8
votes
2answers
379 views
Split tokens on string using Regex in c#
I have some "tokenized" templates, for example (I call tokens the part between double braces):
var template1 = "{{TOKEN1}} is a {{TOKEN2}} and it has some {{TOKEN3}}";
I want to extract an array ...
2
votes
1answer
96 views
split fun with two delimiters “|” is not working
In my doInBackground(String... arg0) method I get a result variable containing this:
4|Litter Bin,-37.8141472000103,144.963691391683,17.354417684886|Litter ...
1
vote
2answers
354 views
splitting a comma delimited string with escaping quotes
I see that there are several similar questions, but I have not found any of the answers satisfactory. I have a comma delimited file where each line looks something like this:
4477,52544,,,P,S, ...
1
vote
2answers
100 views
Removing a Selective Section from a String
I need help figuring out how to remove only the very last "</span>" tag from a string. He is an example of what one of the strings might look like, but sometimes there are a few
<DIV ...
2
votes
2answers
232 views
Removing part of a string C#
I am using a rich text editor on my website and i am using a label to display what the user entered last time he used the box, but when he submits the code it includes the html from the label. When I ...
3
votes
3answers
951 views
Optionally using String.split(), split a string at the last occurance of a delimiter
I have a string that matches this regular expression: ^.+:[0-9]+(\.[0-9]+)*/[0-9]+$ which can easily be visualized as (Text):(Double)/(Int). I need to split this string into the three parts. Normally ...
0
votes
2answers
229 views
error C2893: Failed to specialize function template C++
I tried to create a string splitting template like the following, I get errors.
struct splitX
{
enum empties_t { empties_ok, no_empties };
};
template <typename Container>
Container& ...
0
votes
1answer
265 views
Java - split an input stream with every 4th space
I want to tokenize an inputstream with every 4th space. So that whenever I call something like next(), it returns me the 4 words from the line... if 4 words are not there in the input stream as it has ...
3
votes
3answers
707 views
java split string
in Java, if I have a string with this format:
( string1 , string2 ) ( string2 ) ( string4 , string5 , string6 ) [s2]
How can I split the string to get an array of string as this?
string1 , string2
...
0
votes
4answers
772 views
Really fast Java function to split strings without affecting quoted strings?
I need a string splitting function that is really fast that will break apart a comma delimited string without breaking apart strings encased in double-quotes that contain commas. Is there a function ...
15
votes
1answer
344 views
How to have a “custom split()” in a list with strtk?
I have read http://www.codeproject.com/KB/recipes/Tokenizer.aspx and I want to have the last example ( at the end, just before all the graphs) "Extending Delimiter Predicates" in my main, but I don't ...
0
votes
3answers
123 views
Regex in java for the string
I am very new programmer to Java regular expressions. I do not want to use java split with delimiters and try getting the individual tokens. I don't feel its a neat way. I have the following string
...
1
vote
4answers
615 views
Tokenizing a string with unequal number of spaces between fields
I am tryint to tokenize entries from a file. However I am not able to use the line.split("") option because of unequal number of spaces between files. I am copying a few lines from my file below:
...
3
votes
2answers
1k views
What are all the Japanese whitespace characters?
I need to split a string and extract words separated by whitespace characters.The source may be in English or Japanese. English whitespace characters include tab and space, and Japanese text uses ...
0
votes
5answers
698 views
operating over strings, python
How to define a function that takes a string (sentence) and inserts an extra space after a period if the period is directly followed by a letter.
sent = "This is a test.Start testing!"
def ...
-1
votes
1answer
95 views
How to parse an Xml-like tag with regular expression
I need to tokenize following tag:
{TagName attrib1=”value1” attrib2=”value 3”}.
I would like to write regex to do it, but the trouble is that attribute value can contain space, so I can’t just ...
21
votes
7answers
41k views
how to split a string in shell and get the last field
suppose I have the string "1:2:3:4:5" and I want to get its last field ("5" in this case). how do I do that using Bash? I tried cut, but I don't know how to specify the last field with -f.
5
votes
2answers
329 views
Wind blowing on String
I have some basic idea on how to do this task, but I'm not sure if I'm doing it right. So we have class WindyString with metod blow. After using it :
System.out.println(WindyString.blow(
...
0
votes
2answers
4k views
how to remove whitespace while scanning text in java
I've implemented several different "scanners" in java, from the Scanner class to simply using
String.split("\ss+")
but when there are several whitespaces in a row like "the_quick____brown___fox" ...
0
votes
2answers
592 views
Split Strings and arrange db to display products in PHP
I'm new in php. Could you please help me to find the way to properly arrange following task:
Table "Products"
id - details
1 - 1-30,2-134:6:0;;2-7:55:0;;1-2,2-8:25:0 - where this string can be ...
11
votes
5answers
11k views
tokenize a string keeping delimiters in Python
Is there any equivalent to str.split in Python that also returns the delimiters?
I need to preserve the whitespace layout for my output after processing some of the tokens.
Example:
>>> ...
5
votes
5answers
10k views
C++ tokenize a string using a regular expression
I'm trying to learn myself some C++ from scratch at the moment.
I'm well-versed in python, perl, javascript but have only encountered C++ briefly, in a
classroom setting in the past. Please ...
6
votes
3answers
27k views
Tokenizing Error: java.util.regex.PatternSyntaxException, dangling metacharacter '*'
I am using split() to tokenize a String separated with * following this format:
name*lastName*ID*school*age
%
name*lastName*ID*school*age
%
name*lastName*ID*school*age
I'm reading this from a file ...
4
votes
3answers
3k views
Using escaped_list_separator with boost split
I am playing around with the boost strings library and have just come across the awesome simplicity of the split method.
string delimiters = ",";
string str = "string, with, comma, delimited, ...
4
votes
6answers
3k views
Splitting strings in python
I have a string which is like this:
this is [bracket test] "and quotes test "
I'm trying to write something in Python to split it up by space while ignoring spaces within square braces and quotes. ...
154
votes
25answers
164k views
How do I tokenize a string in C++?
Java has a convenient split method:
String str = "The quick brown fox";
String[] results = str.split(" ");
Is there an easy way to do this in C++?
