我有一個字符串是這樣的:正則表達式字
toddler shoes
+saint +louis +baby +kids +clothing
+omaha +white +onesies
+albuquerque+mother+of+bride+gowns
+anaheim+mother+ of+bride+gowns
我需要找到一個具有多字的「+」號分隔的最後兩個字符串,但沒有空格,我已經試過以下但它不會工作
\\+\\w\\b(?!)
\\+\\w(?!)
\\+\\w+(?!\\s)
\\+\\w[^\\s]
(\\+(\\s)*\w)+
但他們都返回了前兩個字符串。
您顯示的最後一個字符串中有空格。一個錯字? –
這是什麼語言? Java的? –
我在mongodb命令行中運行它 – user468587