2
Iam新增了java,我想提出一個關於java正則表達式的問題。java關於行的正則表達式包含多個字符
如何檢查一行只包含特定的字符串,然後是任何操作符。另外,以前的字符串不包含「//」。
例如,如果線是:預先
//x; -> does not matches the criteria
x++; ->matches
x--; ->matches
x=1; ->matches
(x,y) ->matches
(x1,y) ->does not matches because we want only x not x1
x = 1 ; ->matches
感謝。
這對於_parser_來說看起來更好。你的項目是關於什麼的? –