我需要一个正则表达式来计算
java中管道分隔字符串中的列数.
列数据将始终用双引号括起来,否则将为空.
列数据将始终用双引号括起来,否则将为空.
例如:
"1234"|"Name"||"Some description with ||| in it"|"Last Column"
谢谢
解决方法
这是一种方法:
String input = "\"1234\"|\"Name\"||\"Some description with ||| in it\"|\"Last Column\""; // \_______/ \______/\/\_________________________________/ \_____________/ // 1 2 3 4 5 int cols = input.replaceAll("\"[^\"]*\"","") // remove "..." .replaceAll("[^|]","") // remove anything else than | .length() + 1; // Count the remaining |,add 1 System.out.println(cols); // 5
IMO虽然不是很强大.例如,如果您计划处理转义引号,我建议不要使用正则表达式.