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.
我无法在 Notepad++ 中保留前 8 个字符。
我有一个这样的列表:
johndoe2.21test markdoetesting.new marvin213.jo.hn abcd1234.dcba
我想要这样的输出:
johndoe2 markdoet marvin21 abcd1234
你能为我指出正确的方向吗 ?
您可以为此使用列选择功能。
您还可以在正则表达式模式下使用查找和替换。
^(.{8}).*
\1