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.
:强制后如何设置参数?我已经尝试了几个在线网络工具,但它们无法帮助我。
:
^(?<first>.*?):(?<second>.*?)$
我猜你的意思是,你希望那部分至少包含一个字符?在这种情况下,请使用.+?而不是.*?. (*意思是“零个或多个”,+意思是“一个或多个”。)更好的是,写:
.+?
.*?
*
+
^(?<first>[^:]*):(?<second>.+)$