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.
我需要一个正则表达式匹配器来查找由一堆记录组成的列表的模式
所有这些都以逗号结尾。
我想在第一次出现逗号时插入开头和结尾的 h1 标签。
我尝试使用(。*),
尝试使用(.*?),或([^,]+),。前者是首选,但 Notepad++ 可能不支持。
(.*?),
([^,]+),
这应该捕获一行中的所有内容,直到并包括逗号:
[^,]*?,
您可以使用此正则表达式:
^([^,]*),
这将定位一行中第一个逗号之前的字符串。还有一个捕获组,它捕获第一个逗号之前的文本以供替换参考。