Java String类
字符串长度
字符串连接
字符串截取
字符串比较
字符串搜索
字符串修改
数据转换
字符串大小写
字符串内存分配
//
//
//
字符串长度/////////////////////////////////////////////////////////////////////////////
int length()
char chars[] = { 'a', 'b', 'c' };
String s = new String(chars);
System.out.println(s.length()); --> 3
字符串连接/////////////////////////////////////////////////////////////////////////////
String s = "He is " + age + " years old.";
--> “He is 9 years old.”
字符串与其他类型数据的连接
int age = 9;
String s = "He is " + age + " years old.";
--> “He is 9 years old.”
String s = "four: " + 2 + 2;
--> four: 22
String s = "four: " + (2 + 2);
--> four:4
字符串截取///////////////////////////////////////////////////////////////////////////////////
char charAt(int where)
where是想要得到的字符的下标。where的值必须是非负的,它指定了在字符串中的位置。charAt( )方法返回指定位置的字符。例如:
char ch;
ch = "abc".charAt(1);
将“b”赋给ch。
void getChars(int sourceStart, int sourceEnd, char target[ ], int targetStart)
sourceStart指定了子字符串开始的下标,sourceEnd指定了子字符串结束的下一个字符的下标。因此子字符串包含了从sourceStart到sourceEnd–1的字符。获得字符的数组由target所指定。将被复制子字符串于其中的target的下标由targetStart指定。注意必须确保的是数组target应该足够大以保证能容纳被指定子字符串中的字符
byte[ ] getBytes( )
getBytes( )方法的其他形式。在将字符串(String)值输出到一个不支持16位Unicode编码的环境时,getBytes( )是最有用的。例如,大多数Internet协议和文本文件格式在文本交换时使用8位ASCII编码
char[ ] toCharArray( )
将字符串(String)对象中的字符转换为一个字符数组
字符串比较///////////////////////////////////////////////////////////////////////////////////
==是比较对象是否相同
boolean equals(Object str)
这里str是一个用来与调用字符串(String)对象做比较的字符串(String)对象。如果两个字符串具有相同的字符和长度,它返回true,否则返回false。这种比较是区分大小写的。
boolean equalsIgnoreCase(String str)
忽略大小写的比较,str是一个用来与调用字符串(String)对象做比较的字符串(String)对象。如果两个字符串具有相同的字符和长度,它也返回true,否则返回false
boolean regionMatches(int startIndex, String str2,int str2StartIndex, int numChars)
boolean regionMatches(boolean ignoreCase,int startIndex, String str2,int str2StartIndex, int numChars)
startIndex指定了调用字符串(String)对象内区间开始的下标。用于比较的字符串(String)由str2指定的。在str2内,开始比较区间的下标由str2StartIndex指定。用于比较的子字符串的长度在numChars中。在第二种方案中,如果ignoreCase是true,字符的大小写被忽略。否则,大小写是有意义的
boolean startsWith(String str)
boolean endsWith(String str)
startsWith( )方法判断一个给定的字符串(String)是否从一个指定的字符串开始。相反地,endsWith( )方法判断所讨论的字符串(String)是否是以一个指定的字符串结尾,如果字符串匹配,返回true。否则返回false
int compareTo(String str)
str是与调用字符串(String)比较的字符串(String)。比较的结果
小于0 调用字符串小于str
大于0 调用字符串大于str
等于0 两个字符串相等
int compareToIgnoreCase(String str)
忽略大小写之外,该方法的返回值与compareTo( )方法相同
字符串搜索///////////////////////////////////////////////////////////////////////////////////
搜索字符首次出现用
int indexOf(int ch)
搜索字符最后一次出现用
int lastIndexOf(int ch)
这里ch是被查的字符。
搜索子字符串首次或最后一次出现用
int indexOf(String str)
int lastIndexOf(String str)
这里子字符串由str指定
可以使用如下这些形式指定搜索的起始点:
int indexOf(int ch, int startIndex)
int lastIndexOf(int ch, int startIndex)
int indexOf(String str, int startIndex)
int lastIndexOf(String str, int startIndex)
这里startIndex指定了搜索开始点的下标。对于indexOf( )方法,搜索从startIndex开始到字符串结束。对于lastIndexOf( )方法,搜索从startIndex开始到下标0。下面的例子说明如何利用
不同的索引方法在字符串(String)的内部进行搜索:
字符串修改///////////////////////////////////////////////////////////////////////////////////
String substring(int startIndex)
startIndex指定了子字符串开始的下标。这种形式返回一个从startIndex开始到调用字符串结束的子字符串的拷贝。substring( )方法的第二种形式允许指定子字符串的开始和结束下标
String substring(int startIndex, int endIndex)
startIndex指定开始下标,endIndex指定结束下标。返回的字符串包括从开始下标直到结束下标的所有字符,但不包括结束下标对应的字符
String concat(String str)
连接两个字符串,str的内容跟在调用字符串的后面。concat( )方法与+运算符执行相同的功能
String replace(char original, char replacement)
original指定被由replacement指定的字符所代替的字符,返回得到的字符串
String s = "Hello".replace('l', 'w');
将字符串“字符串复制函数Hewwo”赋给s。
String trim( )
删除字符串前面和后面的空白符
String s = " Hello World ".trim();
将字符串“Hello World”赋给s。
数据转换///////////////////////////////////////////////////////////////////////////////////
static String valueOf(double num)
static String valueOf(long num)
static String valueOf(Object ob)
static String valueOf(char chars[ ])
字符串大小写////////////////////////////////////////////////////////////////////////////
String toLowerCase( )
String toUpperCase( )
//
//
//
StringBuffer( )
StringBuffer(int size)
StringBuffer(String str)
默认构造函数(无参数)预留了16个字符的空间。该空间不需再分配。第二种形式接收一个整数参数,清楚地设置缓冲区的大小。第三种形式接收一个字符串(String)参数,设置StringBuffer对象的初始内容,同时不进行再分配地多预留了16个字符的空间。当没有指定缓冲区的大小时,StringBuffer分配了16个附加字符的空间
字符串长度/////////////////////////////////////////////////////////////////////////////
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论