我有一个正则表达式的程序:
"\\s*(\\d{1,5})?\\s*(?:<(?<pri>\\d{1,3})>)"
我需要测试匹配模式,因此我正在尝试匹配表达式的相应字符串。
你能提供一个与上述正则表达式匹配的字符串示例吗?
答案 0 :(得分:0)
23123<123>
123 <1>
123 <123>
123<12>
<123>
<1>
这种东西。参见演示。
https://regex101.com/r/sJ9gM7/75
<space>(0 or more)<integer>(1 to 5 may or may not be there)<space>(0 or more)<(Symbol <)<integer>(1 to 3)>(symbol >)