什么是只允许破折号和数字的正则表达式?
一个很好的例子是在电话号码中使用。例如 555-555-555、12-2314-425。
我不想要这样的条目:-------------
虽然但-34--53-343
现在很好。
因此,在上述问题中,您至少需要一位数字,否则需要 0-9 或破折号中的任何一个。
/^[\d-]*\d[\d-]*$/
%w{555-555-555 12-2314-425 -34--53-343 -------------}.each{|s| puts "#{s} #{s.match(/^[\d-]*\d[\d-]*$/) ? 'does' : 'does not'} match"}
555-555-555 does match
12-2314-425 does match
-34--53-343 does match
------------- does not match
如果您尝试识别电话号码,您可能想要识别数字序列的东西,可选地用单破折号分隔,请尝试以下操作:
/^\d+(?:-\d+)*$/
其中不包括前导或尾随破折号和双破折号。
不知道红宝石,但我认为正则表达式是:
/^[0-9]([0-9]|-(?!-))+$/
555-54-456
有效,555--54-456
无效)