Question

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

?

No correct solution

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top