Tagged Questions

-1
votes
1answer
63 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. StringTokenizer …
1
vote
5answers
137 views

Smalltalk, newline character

Does anybody know what's the newline delimiter for a string in smalltalk? I'm trying to split a string in separate lines, but I cannot figure out what's the newline character is smalltalk. ie. …
1
vote
5answers
166 views

Does PL/SQL have an equivalent StringTokenizer to Java’s?

I use java.util.StringTokenizer for simple parsing of delimited strings in java. I have a need for the same type of mechanism in pl/sql. I could write it, but if it already exists, I would prefer to …
3
votes
10answers
431 views

How to replace tokens in a string without StringTokenizer

Given a string like so: Hello {FIRST_NAME}, this is a personalized message for you. Where FIRST_NAME is an arbitrary token (a key in a map passed to the method), to write a routine which would …
2
votes
4answers
192 views

C# Tokenizer - keeping the seperators

I am working on porting code from JAVA to C#, and part of the JAVA code uses tokenizer - but it is my understanding that the resulting array from the stringtokenizer in java will also have the …
0
votes
4answers
144 views

How to call split(token) on a string that does not contain the token without causing an error?

I have two types of strings as the IDs of elements in my HTML markup: Dates: "april-23" "march-20" and season names: "springtime" "winter" The dates have a dash separating the month and the …
1
vote
8answers
610 views

Replicating String.split with StringTokenizer

Encouraged by this, and the fact I have billions of string to parse, I tried to modify my code to accept StringTokenizer instead of String[] The only thing left between me and getting that delicious …