Regex search: if any word is starting with the given search input stream
Regex search: if any word is starting with the given search input stream
masti13harsh
Posts: 4Questions: 2Answers: 0
Taking example of the following row data:
This is a test | test is abc| def ghi
If I search for "te" - then the search should match the row as te matches for test for both the columns..
Moreover, if I have special characters it should be able to search that as well
This discussion has been closed.
Answers
I'm sorry, but I don't understand what you're asking for. "te" will match, as it is in the row. There's loads of tutorials on the web if you need more regular expression help.
I am asking for word boundary search regex which I know is \bword\b but this ignores all the special characters
I've found this site to be helpful in building regex expressions:
https://regex101.com/
Kevin