为正则表达式生成相应的字符串时出现问题
probleming in generating corresponding string for a regex
我有一个正则表达式为的程序:
"\s*(\d{1,5})?\s*(?:<(?<pri>\d{1,3})>)"
我需要测试匹配模式,因此我正在尝试匹配表达式的相应字符串。
您能否提供与上述正则表达式匹配的字符串示例?
23123<123>
123 <1>
123 <123>
123<12>
<123>
<1>
这个 sort.See 演示的内容。
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 >)
我有一个正则表达式为的程序:
"\s*(\d{1,5})?\s*(?:<(?<pri>\d{1,3})>)"
我需要测试匹配模式,因此我正在尝试匹配表达式的相应字符串。
您能否提供与上述正则表达式匹配的字符串示例?
23123<123>
123 <1>
123 <123>
123<12>
<123>
<1>
这个 sort.See 演示的内容。
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 >)