1. Matching a set of words : Hello Brick, Brik data ,Brck -->. Bri?c?k.
More:
^ | Start |
$ | End |
a? | one or more a |
(?i) | case insensitive |
a{3} | exactly 3 of a |
a{3,6} | between 3 and 6 of a |
(.*)(?i)(tech?i?e)(.*?) | tech, techi, techie, techie house, the techie house |
| Any digit, short for |
| A non-digit, short for |
| A whitespace character, short for |
| A non-whitespace character, short for |
| A word character, short for |
| A non-word character |
| Several non-whitespace characters |
| Matches a word boundary where a word character is |
| |
| 1234 HELLO some-other words |
| A non-whitespace character, short for |
| A word character, short for |
| A non-word character |
| Several non-whitespace characters |
| Matches a word boundary where a word character is |
Try out: https://regex101.com/
No comments:
Post a Comment