java截取字符串逗号之前的数据
时间: 2023-09-26 13:11:19 浏览: 122
在java中截取字符串
4星 · 用户满意度95%
可以使用 String 类的 substring 和 indexOf 方法来截取字符串逗号之前的数据,示例代码如下:
```
String str = "hello,world";
int index = str.indexOf(",");
if(index != -1) {
String result = str.substring(0, index);
System.out.println(result); // 输出 "hello"
}
```
首先使用 indexOf 方法找到第一个逗号的位置,如果存在逗号,则使用 substring 方法截取从字符串开头到逗号位置之前的子串。如果不存在逗号,则返回原字符串。
阅读全文