\S+ any non-whitespace characters, repeat 1+ times (equivolent to [^\s]+)
(?=...) lookahead, the string after the previous match must satifies the condition inside
\s\S*$ any non-whitespace characters preceded by a whitespace, then the end of the string
3条答案
按热度按时间vktxenjb1#
在这种情况下,应该使用预视,请尝试
这样做,
wvt8vs2t2#
您可以使用前瞻来执行此操作:
参见test case
neekobn83#
请使用此选项:
第一个月
1.使用
$
定位点匹配线的结尾\s+\S*$
匹配行尾的一个或多个空格,后跟零个或多个非空格1.在捕获组中捕获所需的结果
Demo