前端之家收集整理的这篇文章主要介绍了
正则表达式:匹配到第一个出现的字符,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找一个模式匹配一切,直到第一次出现一个特定的字符,说一个“;” – 分号。
我写道:
/^(.*);/
但它实际上匹配一切(包括分号),直到分号的最后一次出现。
你需要
/[^;]*/
[^;]是一个字符类,它匹配除了分号之外的所有内容。
引用perlre
手册页:
You can specify a character class,by enclosing a list of characters in [],which will match any character from the list. If the first character after the “[” is “^”,the class matches any character not in the list.
这应该在大多数正则表达式方言。
原文链接:https://www.f2er.com/regex/358393.html