regex - Regular Expression Test100-200 -


for powershell v3 need find items in range of test100 test200.

for example should work this;

test001 - not valid test099 - not valid test100 - valid test150 - valid test200 - valid test201 - not valid 

i tried -match (test[100,200]) not work. how can this?

test(?:1\d\d|200)\b 

you can use this.see demo.

https://regex101.com/r/hi0qp0/26


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -