您好,我需要一個RegEx來查找一個字符串是否以「(#)」開始,其中#可以是從1到99999等的任何數字, 「包括符號正則表達式在字符串開始時的特定值
Strings Ex。
"(1) S0m3 - Str!n9" - Must found positive
"(67) my $tr!n9 goes H3R3" - Must found positive
"@n0Th3R (7) $tr!nG" - Must found negative
"L0Ok @t the 3nD (57)" - Must found negative
我搜索的谷歌,但我無法找到任何結果也許我不知道該怎麼尋找,請指引我找到這個問題的答案
謝謝爲您的時間:D
謝謝您的幫助,我能夠用'^(\()([0-9] {1做,(4))(\))' –