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.
除了最后一个字符之外,我需要一个正则表达式来表示单词 typedef 之后的最后一个单词。我知道这([^typedef]*)$会给我 typedef 之后的最后一个词,但这将包括最后一个字符。
([^typedef]*)$
例如,如果我有这条线type long long integer;,我想要一个可以给我的正则表达式,而integer不是integer;. 如果这有帮助,最后一个字符将始终是分号。
type long long integer;
integer
integer;
这是应该为您工作的正则表达式:
^typedef.*?\s(\w+)\s*;
最后一个单词在匹配组 #1 中可用。
在括号后添加一个句点以匹配 1 个字符但不捕获它: ([^typedef]*).$
) 附加到