Tool for creating RegExp from string

J

Jone

Hello All,
Are there any tool available that can create basic regular expression from a
string?

Cheers,
 
D

Daniel Pitts

Jone said:
Hello All,
Are there any tool available that can create basic regular expression from a
string?

Cheers,

// Works for some values of x ;-(
public String basicRegEx(String x) { return x; }

// Works for all values of x ;-)
public String basicRegEx(String x) { return Pattern.quote(x); }
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,995
Messages
2,570,231
Members
46,820
Latest member
GilbertoA5

Latest Threads

Top