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.
我正在寻找一个可以帮助我匹配两个字符串之间的文本的正则表达式。
我有以下字符串
Daily Update From: x.mydomain.local on DC01-PC
我正在使用以下正则表达式
(?m)From: .*?on
但我想要的是仅从字符串中严格提取 x.mydomain.local 。
有谁知道我怎么能做到这一点。
干杯,
您可以使用捕获组(然后您将进入x.mydomain.local第一个捕获组):
x.mydomain.local
(?m)From: (.*?) on
或使用环视:
(?m)(?<=From: ).*?(?= on)