hi all.
I got a urgent problem in my job.
the sample data as follows:
FT="EXERPRI:$68 .88/10W*BB9505-28765710"
FT="MEETON6/3/07FOR
What I need is to extract the string after the quote and before any punctuation or integer so my outcome can be like this:
EXERPRI
MEETON
I use the SQL query as follows
SELECT Left([freetext],InStr([freetext],isnumeric())-1) AS Expr1
FROM Feb;
but it doesn't work. What can I do? Thanks a lot!
I got a urgent problem in my job.
the sample data as follows:
FT="EXERPRI:$68 .88/10W*BB9505-28765710"
FT="MEETON6/3/07FOR
What I need is to extract the string after the quote and before any punctuation or integer so my outcome can be like this:
EXERPRI
MEETON
I use the SQL query as follows
SELECT Left([freetext],InStr([freetext],isnumeric())-1) AS Expr1
FROM Feb;
but it doesn't work. What can I do? Thanks a lot!
Comment