Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
97 views
in Technique[技术] by (71.8m points)

php - How to improve the regex?

I'm trying to match the following possibilities with a regex:

MORE THAN CAD 10,000
MORE THAN CAD 10,000 BUT LESS THAN CAD 15,000
LESS THAN CAD 10,000

My regex works with /^(((MORE|LESS) THAN CAD [d,]+)|(MORE THAN CAD [d,]+ BUT LESS THAN CAD [d,]+))$/ but I'm wondering if there's a more elegant way.

I've tried /^(MORE THAN CAD [d,]+)?(( BUT )?LESS THAN CAD [d,]+)?$/ but it's letting the following pass as well:

MORE THAN CAD 10,000LESS THAN CAD 15,000
question from:https://stackoverflow.com/questions/65832261/how-to-improve-the-regex

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use

^(?:(MORE)|LESS) THAN CAD [d,]+(?(1)(?: BUT LESS THAN CAD [d,]+)?)$

See the regex demo.

Details:

  • ^ - start of string
  • (?:(MORE)|LESS) - a non-capturing group matching MORE (captured in Group 1) or LESS
  • THAN CAD - a literal string
  • [d,]+ - one or more digits or commas
  • (?(1)(?: BUT LESS THAN CAD [d,]+)?) - a conditional that allows matching an optional BUT LESS THAN CAD [d,]+ pattern if Group 1 matched.
  • $ - end of string.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...