Tagged Questions
3
votes
11answers
2k 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 ...
1
vote
2answers
310 views
RegEx split string with on a delimeter(semi-colon ;) except those that appear inside a string
I have a Java String which is actually an SQL script.
CREATE OR REPLACE PROCEDURE Proc
AS
b NUMBER:=3;
c VARCHAR2(2000);
begin
c := 'BEGIN ' || ' :1 := :1 + :2; ' || ...
0
votes
4answers
63 views
Tokenizing strings using regular expression in Javascript
Suppose I've a long string containing newlines and tabs as:
var x = "This is a long string.\n\t This is another one on next line.";
So how can we split this string into tokens, using regular ...
0
votes
3answers
199 views
Better to use regex or Stringtokenizer to find author and book title in this: William Faulkner - 'Light In August'
Is it better to use regex or Stringtokenizer to separate the author and title in this string:
William Faulkner - 'Light In August'
Is this the simplest regex that would work?
Pattern pattern = ...