如何匹配正则表达式中的字符串,直到遇到空格?

时间:2017-07-19 23:31:55

标签: regex

我有一段文字需要匹配<latex</latex>之间的任何内容,而不是文字and an equivalent quantity of

Which given has the same divisor of <latex>5</latex> and an equivalent quantity of <latex>(5 + 2) \div 5</latex>?

我尝试使用正则表达式\&lt\;(latex).+(latex)\&gt\;([^\s]),但直到该行中的最后一个</latex>才停止。

1 个答案:

答案 0 :(得分:0)

你需要使用非贪婪的比赛

\&lt\;(latex).+?(latex)\&gt\;