there Is possible get by regular expression something like:

011* TO *22

where all searching word start from '011' and end at '22' example:

 011-02
 011K02
 011pr12
 011112
 011222
 011322

?

没有正确的解决方案

其他提示

In you question you state: "start from '011' and end at '22'".

The regex for that would be:

011.*22

However to match all items in your sample data:

011.*[012]2

Regex example:

http://regex101.com/r/uQ5lN2

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top