我想創建一個計算器,其中操作數是單詞。它可以重複任意次數。 例如EmpName + xyz或EmpName或x + rr + fff。 它應該拒絕這種模式,例如 EmpName +
我創建一個正則表達式:爲計算器創建正則表達式模式
(?m)(?<Operand>^[a-z].*?)(?<Operator>[+*])
On this output:
1) a + b
2) ab+dddd
3) ab*fffff*ggggg
4) dfg+fg4444+fgf4
5) xxxxx
But it only targets 1,2,3,4 and up to only first operator. Output in regex 2.05.
"Operand: [ab]"
"Operator:[+]"
I am using regex builder 2.05 to test my regex. How i can repeat this pattern any number of times? Thanks in advance.
你是否需要覆蓋括號? – aioobe
你在使用哪種語言? – aioobe
是的,我需要parantheses以及分,百分比,減號也。我正在使用.net –