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.
我有一个字符串出来:
<span class="abc"> test </span> styletext
我想抓住styletext动态的部分并给它一些css样式。
styletext
我可以使用正则表达式选择空格后的整个部分并应用样式吗?如何定位空白之后的部分?
试试这个作为正则表达式:
^/span\s*(.*)
根据您使用的语言,您可能需要转义“\”。
组中捕获的文本将是样式文本。
它“翻译”为:从字符串的开头(^)开始匹配文本“/span”,后跟任意数量的空白字符(\s*),然后是任意数量的任何类型的字符(.*)。括号告诉它捕获最后一部分以供以后使用。
^
\s*
.*