码迷,mamicode.com
首页 > 其他好文 > 详细

字符串的截取

时间:2020-06-19 16:19:10      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:blog   return   col   dex   sub   example   mil   ble   数组   

根据开始和结束位置截取字符串:

public String substring(int beginIndex):

    "unhappy".substring(2) returns "happy"

    "Harbison".substring(3) returns "bison"

    "emptiness".substring(9) returns "" (an empty string)

public String substring(int beginIndex, int endIndex):

    "hamburger".substring(4, 8) returns "urge"

     "smiles".substring(1, 5) returns "mile"

根据正则表达式截取字符串,返回的可能是字符串数组:

public String[] split(String regex)

Regex结果
: { "boo", "and", "foo" }
o { "b", "", ":and:f" }

 

String str[]="boo:and:foo".split(":");
String str[]="boo:and:foo".split("o");

 

字符串的截取

标签:blog   return   col   dex   sub   example   mil   ble   数组   

原文地址:https://www.cnblogs.com/zxdup/p/12970955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!