英文:
regular expression to remove all other words except the words between special characters in notepad++
问题
我尝试在Notepad++中创建一个正则表达式来删除除了那些被特殊字符括起来的词之外的词语。我正在使用这个正则表达式 \<.*?\>
来删除词语以及文本。
例如:<br/>
示例文本:
随机文本 <ABCD> 随机文本
随机文本 <QWERT> 随机文本
随机文本 <XYZ> 随机文本
输出:
随机文本 随机文本
随机文本 随机文本
随机文本 随机文本
我只想要与上面的正则表达式相反的效果。
例如:<br/>
示例文本:
随机文本 <ABCD> 随机文本
随机文本 <QWERT> 随机文本
随机文本 <XYZ> 随机文本
输出:
<ABCD>
<QWERT>
<XYZ>
英文:
I am trying to create a regex in Notepad++ to remove words except those enclosed between special characters. I am using this regex \<.*?\>
which removes the words along with text.
Eg:<br/>
Sample text
random text <ABCD> random text
random text <QWERT> random text
random text <XYZ> random text
Output
random text random text
random text random text
random text random text
I just want the opposite of the above regex
Eg:<br/>
Sample text
random text <ABCD> random text
random text <QWERT> random text
random text <XYZ> random text
Output
<ABCD>
<QWERT>
<XYZ>
答案1
得分: 2
这是用于 (*SKIP)(*FAIL)
动词的任务。
- <kbd>Ctrl</kbd>+<kbd>H</kbd>
- 查找内容:
<.+?>(*SKIP)(*FAIL)|.+?
- 替换为:
保留为空
- 选中 环绕
- 选中 正则表达式
- 取消选中
. 匹配换行符
- <kbd>全部替换</kbd>
解释:
<.+?> # 匹配要保留的字符串
(*SKIP) # 跳过这个匹配
(*FAIL) # 将其视为失败
| # 或者
.+? # 匹配除换行符以外的任何字符
屏幕截图(之前):
屏幕截图(之后):
英文:
This is a job for (*SKIP)(*FAIL)
verbs.
- <kbd>Ctrl</kbd>+<kbd>H</kbd>
- Find what:
<.+?>(*SKIP)(*FAIL)|.+?
- Replace with:
LEAVE EMPTY
- TICK Wrap around
- SELECT Regular expression
- UNTICK
. matches newline
- <kbd>Replace all</kbd>
Explanation:
<.+?> # matches the string to be kept
(*SKIP) # skip this match
(*FAIL) # considere it failed
| # OR
.+? # match any character but newline
Screenshot (before):
Screenshot (after):
答案2
得分: 1
Find:
(?m).+?(<.*?>|$)
Replace with:
$1
where:
(?m)
is a flag activating the multiline mode.+?
searches for one or more characters (but as less as possible)(<.*?>|$)
matches the desired pattern or the end of the line
Screenshots
Before:
After:
英文:
Find:
(?m).+?(<.*?>|$)
Replace with:
$1
where:
(?m)
is a flag activating the multiline mode.+?
searches for one or more characters (but as less as possible)(<.*?>|$)
matches the desired pattern or the end of the line
Screenshots
Before:
After:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论