Sublime Text 正则表达式替换和追加
Sublime Text Regex Replace and Append
谁能帮我写一个正则表达式。
由于我是正则表达式的绝对初学者,所以我什至一开始就遇到了麻烦,而且教程并没有真正帮助我,因为我不理解它。
我有大量文件,其中包含 'products.htmlcar' 或 'products.htmlcar_paper' 或 'products.htmlhome-decorative_air_freshener'
之类的内容
我正在尝试删除我所有文件中所有包含单词“'products.html" and replace them with just the text at the end of it and append html to it before the ending " '”的实例,例如 'products.htmlcar' 变为 'car.html' 或 'products.htmlhome-decorative_air_freshener' 变为 'home-decorative_air_freshener.html'
我已经尝试做一些我检查过的事情
\^'products.html
但是 sublime text 没有正确搜索它。我不知道是我的语法不正确还是什么,但它真的让我感到困惑。
提前致谢。
如果您的字符串是
,请使用此选项
products.htmlcar
products.htmlcar_paper
products.htmlhome-decorative_air-freshener
^products.html
如果你的字符串有 ' a
^'products.html
试试这个:
Find: products\.html(.*?)'
Replace: .html'
谁能帮我写一个正则表达式。
由于我是正则表达式的绝对初学者,所以我什至一开始就遇到了麻烦,而且教程并没有真正帮助我,因为我不理解它。
我有大量文件,其中包含 'products.htmlcar' 或 'products.htmlcar_paper' 或 'products.htmlhome-decorative_air_freshener'
之类的内容我正在尝试删除我所有文件中所有包含单词“'products.html" and replace them with just the text at the end of it and append html to it before the ending " '”的实例,例如 'products.htmlcar' 变为 'car.html' 或 'products.htmlhome-decorative_air_freshener' 变为 'home-decorative_air_freshener.html'
我已经尝试做一些我检查过的事情
\^'products.html
但是 sublime text 没有正确搜索它。我不知道是我的语法不正确还是什么,但它真的让我感到困惑。
提前致谢。
如果您的字符串是
,请使用此选项products.htmlcar
products.htmlcar_paper
products.htmlhome-decorative_air-freshener
^products.html
如果你的字符串有 ' a
^'products.html
试试这个:
Find: products\.html(.*?)'
Replace: .html'