Pergunta

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

?

Nenhuma solução correta

Outras dicas

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top