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.
我在php中有以下字符串:
$text = "这个价格不包括增值税和等等等等等等......";
和正则表达式的开始:
preg_match("/(--not sure what goes here--)(?: vat)/", $text, $vatStatus);
基本上我想在vat之前得到单词的第一个字母(在这种情况下是字母'e')。
提前感谢您的帮助。
PS。该解决方案需要专门用于正则表达式,而不是任何其他 PHP 函数。
谢谢
/\b(\w)\w*?(?: vat)/
这应该捕获您的第一个字母。