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.
抱歉这么基本的问题,但我在其他地方找不到这个
我怎样才能找到/回显字符串中的整数(由空格分隔),如下所示:
Find the integers 24 / 850
我怎么能只返回 24 或 850?
您可以在示例中使用正则表达式获取组:预览
因此,要获取组,您可以使用 (\d+)
如何使用(\d)+?
(\d)+
\d表示数字。
\d