正则表达式,如何 select 除模式外的所有内容?
Regex, how to select everything except pattern?
我正在研究 TextWrangler,我想删除之前没有主题标签的文本中的每个单词。
示例:
Looking for a simple #homemade gift for the #holidays?
This #DairyFree #DarkChocolate #Fudge recipe is simple and absolutely delicious: http://sddf.us/fudge
我只想
#homemade #holidays #DairyFree #DarkChocolate #Fudge
我也想用TextWrangler,因为我对Java和PHP一无所知。
我使用这个正则表达式 #\w+
其中 select 标签词,但我不明白如何删除其他所有内容。
谢谢
您可以用空字符串替换所有 (^|\s|[^#\w])+[^#\s]+
。
我正在研究 TextWrangler,我想删除之前没有主题标签的文本中的每个单词。 示例:
Looking for a simple #homemade gift for the #holidays?
This #DairyFree #DarkChocolate #Fudge recipe is simple and absolutely delicious: http://sddf.us/fudge
我只想
#homemade #holidays #DairyFree #DarkChocolate #Fudge
我也想用TextWrangler,因为我对Java和PHP一无所知。
我使用这个正则表达式 #\w+
其中 select 标签词,但我不明白如何删除其他所有内容。
谢谢
您可以用空字符串替换所有 (^|\s|[^#\w])+[^#\s]+
。