作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在数字或字符串 ListView 中获取淤泥字符串的长度
String s= "Aan.Gabriel.Gymkhana";
String[] parts = s.split("\\.");
String part1 = parts[0];
String part2 = parts[1];
String part3
String s= "Aan.Gabriel.Gymkhana";
String[] parts = s.split("\\.");
String part1 = parts[0];
String part2 = parts[1];
String part3
作为列表
1 Aan
2 Gabrie
3 Gymkhana
列表的长度为3
最佳答案
我很难弄清楚你想要什么,但我认为 s.split("\\.").length
应该能为你提供正确的解决方案。
如果你只需要长度,那么你不需要把它变成一个列表。
如果你想把它变成一个列表,@Micheal 的答案是正确的。
List<String> list = Arrays.asList(parts);
关于java - 获取分成几部分的字符串的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56365376/
我是一名优秀的程序员,十分优秀!