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](https://secure.gravatar.com/avatar/ca8e4e1850996e8e8f6b66f8e62fa7eb/?default=https%3A%2F%2Fvanillicon.com%2Fca8e4e1850996e8e8f6b66f8e62fa7eb_200.png&rating=g&size=120)
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