欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JAVA中截取字符串substring用法详解

程序员文章站 2023-02-16 09:10:48
substring public string substring(int beginindex) 返回一个新的字符串,它是此字符串的一个子字符串。该子字符串始于指定索...

substring

public string substring(int beginindex)

返回一个新的字符串,它是此字符串的一个子字符串。该子字符串始于指定索引处的字符,一直到此字符串末尾。

例如:

"unhappy".substring(2) returns "happy"
 
"harbison".substring(3) returns "bison"
 
"emptiness".substring(9) returns "" (an empty string)

参数:

beginindex - 开始处的索引(包括)。

返回:

指定的子字符串。

抛出:

indexoutofboundsexception - 如果 beginindex 为负或大于此 string 对象的长度。

substring

public string substring(int beginindex, int endindex)

返回一个新字符串,它是此字符串的一个子字符串。该子字符串从指定的 beginindex 处开始, endindex:到指定的 endindex-1处结束。

示例:

"hamburger".substring(3,8) returns "burge"
 "smiles".substring(0,5) returns "smile"

参数:

beginindex - 开始处的索引(包括)。

endindex 结尾处索引(不包括)。

返回:

指定的子字符串。

抛出:

indexoutofboundsexception - 如果 beginindex 为负,或length大于字符串长度。

示例

var str="hello world!"
document.write(str.substring(1,3));

上面返回字符串:"el";

str.substring(1,2) //返回e

str.substring(1) //返回"ello world";

还有此函数中会出现奇怪的现象,当出现str.substring(5,0);

这又是怎么回事,不过返回的是"hello",

str.substring(5,1) //返回"ello",截去了第一位,返回余下的.

可见substring(start,end),可以有不同的说明,即start可以是要返回的长度,end是所要去掉的多少个字符(从首位开始).

在js中,substr(start,length),用得较方便.

编辑本段c#中

变量.substring(参数1,参数2);

截取字串的一部分,参数1为左起始位数,参数2为截取几位。

如:

string s1 = str.substring(0,2);

c#中有两个重载函数

举例如下代码,vs2005编译通过

using system;
 
using system.collections.generic;
 
using system.text;
 
namespace sln_sub
 
{
 
class program
 
{
 
static void main(string[] args)
 
{
string mystring = "a quick fox is jumping over the lazy dog";

//substring()在c#中有两个重载函数

//分别如下示例

string substring1 = mystring.substring(0);

//如果传入参数为一个长整, 且大于等于0,

//则以这个长整的位置为起始,

//截取之后余下所有作为字串.

//如若传入值小于0,

//系统会抛出argumentoutofrange异常

//表明参数范围出界

string substring2 = mystring.substring(0, 11);

//如果传入了两个长整参数,

//前一个为参数子串在原串的起始位置

//后一个参数为子串的长度

//如不合条件同样出现上述异常

console.writeline(substring1);
console.writeline(substring2);
console.readline(); 
} 
}
}

程序输出的结果:

a quick fox is jumping over the lazy dog

a quick fox

另外,求字符a在字符串a中的位置:a.indexof('a')。

编辑本段js用法

在js中, 函数声明: stringobject.substring(start,stop)

start是在原字符串检索的开始位置,stop是检索的终止位置,返回结果中不包括stop所指字符.

编辑本段cb用法

用途

returns the substring at the specified location within a string object.

函数用法及举例

strvariable.substring(start, end)

"string literal".substring(start, end)

用法说明:返回一个字串,其中start是起始的index,end是终止的index,返回的字串包含起始index的字符,但是不包含end的字符。这个是string类下的一个method。

用法实例

function substringdemo(){
 
var ss; //declare variables.
 
var s = "the rain in spain falls mainly in the plain..";
 
ss = s.substring(12, 17); //get substring.
 
return
(ss); //return substring.

}

希望本篇文章对需要学习的朋友有所帮助