1
vote
2answers
63 views
Reading a csv file in Python with different line terminator
I have a file in CSV format where the delimiter is the ASCII unit separator ^_ and the line terminator is the ASCII record separator ^^ (obviously, since these are nonprinting char …
0
votes
1answer
39 views
Explode- sort of?
Using PHP, reading in a string like the following:
36,2,"$21,830.00","$18,012.50","$20,764.00","$14,935.00","$13,655.00","$15,820.00","$6,895.00","$4,357.50","$4,944.00"
I want to …
3
votes
4answers
378 views
MySQL DELIMITER syntax errors
This MySQL script installs multiple triggers.
It works on one machine running MySQL 5.0.51b-community. On another machine running MySQL 14.12 Distrib 5.0.45, for redhat-linux-gnu …
0
votes
3answers
42 views
How to convert URL string with multiple delimiters into another string in PHP?
So I have this sample string:
?items=3744130|1^356221|2^356222|1
extracted from a URL:
http://www.example.com/process.php?items=3744130|1^356221|2^356222|1
I need to convert …
-1
votes
1answer
61 views
problem with stringtokenizer
Hi all, i want to parse the following using StringTokenizer for every string matching "agent>". I tried it using the code like this. Please let me know where i am going wrong.
St …
1
vote
10answers
111 views
Best approach to parse text files that contain multiple types of delimiters?
I need to parse some text files that have different types of delimiters (tildes, spaces, commas, pipes, caret characters).
There is also a different order of elements depending on …
2
votes
2answers
165 views
Is There An Efficient Whole Word Search Function in Delphi?
In Delphi 2009 or later (Unicode), are there any built-in functions or small routines written somewhere that will do a reasonably efficient whole word search where you provide the …
2
votes
5answers
42 views
inline dynamic string in ascx
This doesn't execute the delimiter (its displayed verbatim in the confirm dialog). Why not? Also, that variable is set in the codebehind, but is ready by the time PreRender gets …
0
votes
4answers
115 views
best way to parse a line in python to a dictionary
I have a file with lines like
account = "TEST1" Qty=100 price = 20.11 subject="some value" values="3=this, 4=that"
There is no special delimiter and each key has a value that is …
0
votes
3answers
56 views
Using a php function using a variable with delimiters
I would like to know If I can use a php function on a variable that contains delimiters like ' or ". I'm receiving a text content from my database and I would like to use: strip_ta …
1
vote
3answers
178 views
Java Scanner Headache
I have a text file which looks like:
name1
1 0 1 0 1
0 1 1 1 0
0 0 0 0 0
name2
1 0 1 0 1
0 0 1 1 0
0 0 0 0 1
i.e., a plaintext label followed by a few rows with 1/0 separated by …
0
votes
1answer
266 views
Java Scanner Delimiter Usage
I'd like to specify a delimiter for a scanner that splits on some pattern, but doesn't remove that pattern from the tokens. I can't seem to make this work, as anything that is ide …
0
votes
3answers
94 views
Using MySQL LOAD DATA INFILE with nonprintable character delimiters
I have some vendor data that has the SOH (ASCII character 1) as the field delimiter and STX (ASCII character 2) as the record delimiter. Is it possible to load this data with LOAD …
0
votes
3answers
84 views
Ignoring escaped delimiters (commas) with awk?
If I had a string with escaped commas like so:
a,b,{c\,d\,e},f,g
How might I use awk to parse that into the following items?
a
b
{c\,d\,e}
f
g
0
votes
4answers
441 views
Regular Expression to find a string included between two characters, while EXCLUDING the delimiters
Hi all,
I looked around for a while, but probably I can't "Google" with the proper keywords, so I'm asking here. I need to extract from a string a set of characters which are inclu …
