Regular Expression Test100-200

后端 未结 1 418
傲寒
傲寒 2021-01-23 22:28

For powershell v3 i need to find items in the range of Test100 to Test200.

For example it should work as this;

Test001 - not va         


        
相关标签:
1条回答
  • 2021-01-23 22:54
    Test(?:1\d\d|200)\b
    

    You can simply use this.See demo.

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

    0 讨论(0)
提交回复
热议问题