문제

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