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

masti13harshmasti13harsh 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

Answers

  • colincolin Posts: 15,235Questions: 1Answers: 2,597

    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.

  • masti13harshmasti13harsh Posts: 4Questions: 2Answers: 0

    I am asking for word boundary search regex which I know is \bword\b but this ignores all the special characters

  • kthorngrenkthorngren Posts: 21,059Questions: 26Answers: 4,903

    I've found this site to be helpful in building regex expressions:
    https://regex101.com/

    Kevin

This discussion has been closed.