我正在寻找一个模式匹配一切,直到第一次出现一个特定的字符,说一个“;” – 分号。
@H_404_1@我写道:
/^(.*);/@H_404_1@但它实际上匹配一切(包括分号),直到分号的最后一次出现。
你需要
/[^;]*/@H_404_1@[^;]是一个字符类,它匹配除了分号之外的所有内容。 @H_404_1@引用
perlre
手册页:
@H_404_1@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.@H_404_1@这应该在大多数正则表达式方言。