java 截取第一个空格之前的字符串
时间: 2023-07-17 07:00:12 浏览: 173
字符串截取
要截取第一个空格之前的字符串,您可以使用以下代码:
```java
String input = "hello world";
int index = input.indexOf(" ");
String result = input.substring(0, index);
System.out.println(result); // 输出 "hello"
```
在上面的例子中,我们使用 `indexOf()` 方法找到第一个空格的索引位置,然后使用 `substring()` 方法截取从索引0到该索引位置之间的字符串部分(不包括该索引位置)。最后,我们将结果打印出来。
阅读全文