Home > Database > Mysql Tutorial > eclipse批量替换的技巧

eclipse批量替换的技巧

WBOY
Release: 2016-06-07 15:35:33
Original
1505 people have browsed it

1, ctrl H 打开 eclipse 的 search 面板, 2. 选择 File Search 的tab, 3. 选中 Regular expression 复选框, 在 Containing text 输入框中 输入你要替换(查找)的正则表达式 , 例如 我们替换 /corp/([a-z]{1,}).jsp (注意这里的括号)替换成 /ymdj_jsp/cor

1,   ctrl+ H 打开 eclipse 的 search 面板,

2.   选择 File Search 的tab,

3.   选中 Regular expression 复选框,

  在 Containing text 输入框中 输入你要替换(查找)的正则表达式 ,

例如 我们替换 /corp/([a-z]{1,}).jsp (注意这里的括号)替换成 /ymdj_jsp/corp/$1.jsp $1就是前面那个正则表达式中括号里的值

这个替换的意思 将所有的存在corp目录带jsp的链接替换成ymdj_jsp/corp 

这个功能在日常jsp换目录时 很常用


如果替换的表达式中有$ 改成 \$就可以了

 

如果需要替换的词语中含有 () 或者. 或者?等这些正则表达式中的特殊字时可以添加一个转移符号 即可

比如:tmpEle.attributeValue\("([a-z]{1,})"\) 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template