有没有办法知道在这种情况下使用了哪种模式。我的意思是有时我可以获得像" 123< = 456"有时喜欢" 123> = 456"。我的问题是,是否可以知道"< ="是使用过的模式还是"> ="
Pattern pattern = Pattern.compile("(<=)|(>=)");
String x= "123<=456"; \\"123>=456"
String[] t = pattern.split(x);
答案 0 :(得分:2)