我忘记了这个正则表达式,但是我的列表中包含了这样的文字:
muro33:s574474< 7 char
iklexi:b51111< 6 char
don523:uez3w4< 6 char
sonic353: l5431 < 5 char
如何在delim
之后使用5个字符来删除多行答案 0 :(得分:0)
(.+?):.{5}$
- 此正则表达式可能会有所帮助
(.+?) # lazy capturing of all characters before colon
: # matches colon
.{5} # matches any 5 characters
$ # matches the end of the string