2

嗨,我有一些建议可以在以制表符开头的文件行中查找。我有如下文件: text1 -> text2

我会有像 text1 text2 这样的行

谢谢

安东尼奥

4

2 回答 2

3

如果你想匹配以 tab 开头的行然后使用这个^\t+.*$^\t+.*\n

如果您想从开头删除标签,请使用此正则表达式^\t+并替换为null string

如果你想删除文本中的任何标签然后使用\t+(这也将匹配单词之间的标签)并替换为null stringor 。如果你愿意space,你也可以用单个标签替换\t

input: "`\t`text1`\t`text2`"

output if use regex `^t+` and replace with null => "text1`\t`text2"
output if use regex `t+` and replace with null => "text1text2"
output if use regex `t+` and replace with space=> " text1 text2"
于 2013-10-04T09:21:34.737 回答
0

怎么样:

搜索:^\t+.*$

这将匹配以任意数量的表格开头的行。

于 2013-10-04T09:17:41.543 回答