我想用正則表達式來創建一個表達式,但我似乎無法做到正確。這個正則表達式不正確
我需要做的是找到一個字符串以下類型的字符串:
community_n
例如,串可在其內
community community_1 community_new_1 community_1_new
從
,我只是想提取物community_1
我試過/(community_\\d+)/
,但這顯然是不正確的。
我想用正則表達式來創建一個表達式,但我似乎無法做到正確。這個正則表達式不正確
我需要做的是找到一個字符串以下類型的字符串:
community_n
例如,串可在其內
community community_1 community_new_1 community_1_new
從
,我只是想提取物community_1
我試過/(community_\\d+)/
,但這顯然是不正確的。
嘗試增加字boundries,所以
/(\\bcommunity_\\d+\\b)/
嘗試使用正則表達式(community_ \ d +)。 雖然我可能不正確,因爲我不知道您使用的是哪種語言。 (出於某種原因,我不能添加評論,我只能回答問題)。
如果字符串只是'community_1_new',你是否還想匹配'community_1'?或者只匹配「community_1」這個詞 – Bort