1
vote
1answer
31 views
Can I define flex tokens during runtime?
I'd like to use lex/yacc to read in a delimited text file. This would be pretty trivial stuff for a parser, but different text files have different delimiters, so I'd like to let the user specify …
6
votes
3answers
100 views
Viewing delimited columns in emacs
Is anyone aware of an emacs mode or function that will reformat a buffer holding a delimited file such that each delimiter (e.g. tab) defines a "column" with the width of each column set to the …
0
votes
2answers
84 views
Javascript: quick script to line up pipe-delimited text (or any-character-delimited text)
Background: I've written this before but I don't like the approach. The reason is because Javascript does not have "sprintf" and that is something I use heavily if the language supports it.
Question: …
5
votes
7answers
232 views
Is there a standard format for describing a flat file?
Is there a standard or open format which can be used to describe the formating of a flat file. My company integrates many different customer file formats. With an XML file it's easy to get or create …
0
votes
3answers
66 views
Getting a comma-delimited list of PK’s for duplicates of a record in SQL Server 2005?
This is an off-shoot of a previous question I had: http://stackoverflow.com/questions/1544314/a-little-fuzzy-on-getting-distinct-on-one-column
This query makes a little more sense, given the data:
…
3
votes
6answers
1k views
What is the fastest way to parse text with custom delimiters and some very, very large field values in C#?
I've been trying to deal with some delimited text files that have non standard delimiters (not comma/quote or tab delimited). The delimiters are random ASCII characters that don't show up often …
1
vote
9answers
170 views
How to split a user-generated string which may contain the delimitter?
I'd like to String.Split() the following string using a comma as the delimitter:
John,Smith,123 Main Street,212-555-1212
The above content is entered by a user. If they enter a comma in their …
1
vote
6answers
70 views
Delimiting User Input
What is the best character to use to delimit user input?
For example if a user has an infinite number of textboxes to type things into, but each textbox's value will be concatenated into a single …
0
votes
2answers
418 views
How to split single quoted comma delimited values containing commas in Ruby
Say I have a string with comma delimited values enclosed in single quotes that may or may not include commas, like this:
"'apples,bananas','lemons'"
and I want to split that into an array
…
6
votes
21answers
799 views
What is a more unique delimiter than comma for separating strings?
I have several textboxes where users can enter information into them. This can include commas, so I can't use the standard comma delimited strings.
What is a good delimiter to denote that strings …
0
votes
2answers
277 views
copying from a tab delimited text file to itself
I have a tab delimited text file as so :
name \t loan period \t loan amount
John \t 5 years \t 6000
Sarah \t 5 years \t 6000
Jane \t 1 month \t 100
I'm looking to copy the …
3
votes
3answers
433 views
How do I handle every ASCII character (including regex special characters) in a Perl regex?
I have the following code in Perl:
if (index ($retval, $_[2]) != -1) {
@fs = split ($_[2], $_[1]);
$_[2] is the delimiter variable and $_[1] is the string that the delimiter may exist in. …
0
votes
3answers
278 views
Regex to find strings contained between separators
in this text :
text text text [[st: aaa bbb ccc ddd eee fff]] text text
text text [[st: ggg hhh iii jjj kkk
lll mmm nnn]] text text text
I'm trying to get the text between the [[st: and that ends …
0
votes
2answers
1k views
C# regex to replace a delimiter by another one
I'm working on pl/sql code where i want to replace ';' which is commented with '~'.
e.g.
If i have a code as:
--comment 1 with;
select id from t_id;
--comment 2 with ;
select name from t_id;
…
0
votes
4answers
683 views
C# regex to match a string which has a delimiter
I need some help with regex.
i want to get the string which has a delimiter in it between two specific words.
e.g.
i need a regex which matches:
Statements1 start Statements2 ; Statements3 end fun;
…
