Java中substring的各种用法
时间: 2023-10-05 16:14:22 浏览: 107
String 截取字符串方法subString()
Java中的String类提供了substring方法来截取字符串中的一部分。该方法有两种重载形式:
1. public String substring(int beginIndex)
该方法用于截取从beginIndex开始到字符串末尾的所有字符。
2. public String substring(int beginIndex, int endIndex)
该方法用于截取从beginIndex开始到endIndex结束(不包含endIndex)的所有字符。
举个例子:
String str = "Hello, world!";
System.out.println(str.substring(7)); // 输出 "world!"
System.out.println(str.substring(7, 12)); // 输出 "world"
需要注意的是,beginIndex和endIndex的索引是从0开始的,需要注意索引的范围。
对于java中的字符串操作可以结合API文档查询更详细的用法,并且建议在实际项目中进行测试使用。
阅读全文