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.
我正在尝试找到一个正则表达式来查找所有以 @ 开头并在某个随机位置有一个制表符 '\t' 的行。
例如:
@这是示例行(一个制表符字符),它在中间某处有制表符。
我尝试用谷歌搜索,但现在似乎没有任何帮助。
使用这个正则表达式:
^@.*\t
并启用多行选项,即:(?m)^@.*\t
(?m)^@.*\t
你想要这样的东西: -
"^@[^\t]*\t[^\t]*$" // If there is only 1 tab character
或者
"^@.*\t.*$" // If there can be more than one tab characters.
看看这个表达式是否有效:
^@.*\t.*$