Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用正则表达式生成器来创建表达式,但我似乎无法正确处理。
我需要做的是在字符串中找到以下类型的字符串:
community_n
例如,在可能是的字符串中
community community_1 community_new_1 community_1_new
从中,我只想提取community_1
community_1
我试过/(community_\\d+)/了,但这显然是不对的。
/(community_\\d+)/
尝试添加单词边界,所以
/(\\bcommunity_\\d+\\b)/
尝试使用正则表达式 (community_\d+)。虽然我可能不正确,因为我不知道您使用的是哪种语言。(由于某种原因我无法添加评论,我只能回答问题)。