Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用记事本++替换巨大文本文件中的文本。我不知道只有当文本的长度在 50-100 之间时才能替换文本。据我所知,在正则表达式中它应该看起来像这样[a-zA-Z0-9 -+]{50,100},但它在 n++ 中不起作用。我不是正则表达式专家。
[a-zA-Z0-9 -+]{50,100}
示例输入:
<a>short text</a> <a>veeeeryyyyy lloooooonnngggg teeeexxxtttt</a>
预期输出:
<a>short text</a> <a>shrt txt</a>
或者更好的是[^<>]{15,100}它替换标签之间的所有内容
[^<>]{15,100}