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.
由于对正则表达式知之甚少,我不得不寻求专家的帮助来制作正则表达式模式,以便从以下字符串中提取数字63600 :
Amount - < span style="color:#333">63600</span>
很简单
>(/d+)<
可以做这项工作。
如果它是该字符串中唯一的数字,请使用\d+. \d匹配一个数字,+意味着它必须是 1 个或多个数字。
\d+
\d
+
编辑:
OP编辑了一个问题。现在,如果它是标签之间的唯一数字,您可以这样处理:
>\d+<