匹配字符
^(.+)$ #代表匹配任意行首
替换字符
a$1 #代表在上面的匹配结果前加一个字符a
? ?
正则表达式在行首添加指定内容
原文:https://www.cnblogs.com/withfeel/p/10875789.html