I want to use the Match so that I it can find for a pattern which contains blank also. For ex- a = "this is me". I want to search for "this is" What can I do?
Asked
Active
Viewed 54 times
1 Answers
4
The following is TRUE:
"this is me" BEGINS "this is"
"this is me" MATCHES "*this is*"
and when it's the content of a Database field that's used in a Word-Index
tablename.fieldname CONTAINS "this is"

Mike Fechner
- 6,627
- 15
- 17