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.
我有一个类似于以下示例的字符串:
US Latina Calcio v AS Varese 1910
我想使用正则表达式将此字符串拆分为两个字符串。我想制作分隔符:"whitespace"+"v"+"whitespace"。
"whitespace"+"v"+"whitespace"
我试过这样,但它不起作用:
buffer = match.split("\\sv\\s");
尝试使用模式和匹配器类。当涉及到正则表达式时,它们提供了更多的便利。使用表达式作为\sv\s。希望这可以帮助。
解决方案:
我没有初始化两个在拆分后获取值的字符串变量,因此它不起作用。很抱歉造成混乱。