gpt4 book ai didi

java - 如何使用特殊字符& |和 Split() 方法中的⊕?

转载 作者:行者123 更新时间:2023-12-01 17:00:44 24 4
gpt4 key购买 nike

我试过了

String text = "1&2⊕3|4";
String[] s = text.split("|⊕&");

什么也没发生,我也尝试过

String text = "1&2⊕3|4";
String[] s = text.split("\\|\\⊕\\&");

什么也没发生。那么,我该怎么办?

最佳答案

最简单的方法是通过添加括号来创建字符类:

String text = "1&2⊕3|4";
String[] s = text.split("[|⊕&]");

您可以在this excellent tutorial中阅读有关字符类的更多信息。 .

关于java - 如何使用特殊字符& |和 Split() 方法中的⊕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27767003/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com