标签: regex search notepad++
我想使用正则表达式在Notepad ++中为整个文档的每一行中的位置100-105提取字符/值。
我该怎么办?
答案 0 :(得分:1)
Regular expressions
. matches new line
(?<=^.{99})(.{6})
说明:
(?<=...)
^.{99}
(.{6})
如果不够清楚,你可以发表评论。