package test; public class test1_format { public static void main(String[] args) { System.out.println("1&".split("&").length);//长度为1 System.out.println("1&1".split("&").length);//长度为2 System.out.println("1&&&".split("&").length);//长度为1 System.out.println("&1".split("&").length);//长度为2 } }