我有一个包含以下信息的文件:
dog<>
cat<>
cow<>
bird<>
tiger<>
lion<>
puma<>有没有可能在notepad++中运行一次搜索和替换,结果如下所示:
dog=dog1
cat=cat1
cow=cow1
bird=bird1
tiger=tiger1
lion=lion1
puma=puma1发布于 2012-07-03 05:57:25
查找:
^(.+)<>$替换为
\1=\11https://stackoverflow.com/questions/11301703
复制相似问题