Hello,
I want to find a sequence of "select from where " in a string. For example,
"select * from T WHERE t.c1 =1"
should be matched.
Here is the regular expression pattern I wrote:
"SELECT\s\.*FROM\s\.*WHERE\s\.*";
But it doesn't work. What is wrong with it?
Thanks in advance.