Regex question on dsl

Hi all
The regex on the search api have some limitation that i need to overcome somehow so please help me.
i would like to search for something like this:
test123.test[.]com
something.test[.]com

now the regex that i use are ([a-z]?[1-9]?)[.]test[.]com[ and also i have tried to use this .[.]test[.]com

it only match the something.test[.]com and not the test123.test[.]com
and i have read the doc, the <> operator does not really seem to help either since i need to match the random number character behind so i dont really have a pattern for the number that may appear.

Please help me. Thanks you for your time.

After some testing i realize that if only the number follow the . character then the regex will not match at all.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.