java新建string_JavaString(字符串)类的创建及常⽤⽅法public class str {
public static void main(String[] args) {
// 创建字符串的常⽤⽅式
// 创建位置是在公共池,即s1 == s2 == s3
String s1 = "Hello"; // String 直接创建
String s2 = "Hello"; // String 直接创建
String s3 = s1; // 相同引⽤
// 创建位置是在堆,即s4 != s5
String s4 = new String("Hello"); // String 对象创建
String s5 = new String("Hello"); // String 对象创建
// 使⽤字符数组创建
char[] charArray = { 'H', 'e', 'l', 'l', 'o' };
String s6 = new String(charArray);
// 常⽤⽅法
// 1.返回字符串长度
System.out.println(s1.length());
// 2.链接两个字符串,两种⽅式
System.out.at(s2));
System.out.println(s1 + s2);
// 3.返回指定索引处的 char 值。
System.out.println(s1.charAt(2));
// 4.把这个字符串和另⼀个对象从左往右⽐较。
/
/ 返回的是第⼀个不同字符的ASCII码的差值(⽐较-被⽐较),这⾥返回-4
System.out.println("123"pareTo("165"));
// 5.把这个字符串和另⼀个对象从左往右⽐较,忽略⼤⼩写。
// 返回的是第⼀个不同字符的ASCII码的差值(⽐较-被⽐较),这⾥返回-4
System.out.println("1a23"pareToIgnoreCase("1A65"));
// 6.当且仅当字符串与指定的StringBuffer有相同顺序的字符时候返回真.
// 相对⽐较,使⽤equals更多
StringBuffer sb = new StringBuffer("1a23");
System.out.println("1a23".contentEquals("1a23"));
// 7.返回指定*数组*中表⽰该字符序列的 String。 即截取操作
char[] Str1 = { 'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!' };
String Str2 = "";
Str2 = pyValueOf(Str1); // 截取全部
System.out.println("返回结果:" + Str2);
Str2 = pyValueOf(Str1, 2, 7);
System.out.println("返回结果:" + Str2);
// 8.测试此字符串是否以指定的后缀结束。
System.out.dsWith("llo"));
// 9.将此 String 与另⼀个 String ⽐较,不考虑⼤⼩写。
System.out.println("hello".equalsIgnoreCase("HELLO"));
// 10.返回指定字符在此字符串中第⼀次出现处的索引。
System.out.println("Hello".indexOf('l'));
/
/ 11.返回在此字符串中第⼀次出现指定字符处的索引,从指定的索引开始搜索。
System.out.println("hello world".indexOf('l', 4));
// 12.返回指定⼦字符串在此字符串中第⼀次出现处的索引。
System.out.println("hello world".indexOf("wor"));
// 13.返回指定⼦字符串在此字符串中第⼀次出现处的索引,从指定的索引开始。
System.out.println("hello world".indexOf("wor", 3));
// 14. 返回指定字符在此字符串中最后⼀次出现处的索引。
System.out.println("hello world".lastIndexOf('l'));
// 15.返回指定字符在此字符串中最后⼀次出现处的索引,从指定的索引处开始进⾏反向搜索。
System.out.println("hello world".lastIndexOf('l', 4));
// 16.返回指定⼦字符串在此字符串中最右边出现处的索引。
java replace方法
System.out.println("hello worlld".lastIndexOf("ll"));
// 17.返回指定⼦字符串在此字符串中最后⼀次出现处的索引,从指定的索引开始反向搜索。
System.out.println("hello worlld".lastIndexOf("ll", 3));
// 18.告知此字符串是否匹配给定的正则表达式。也可以查是否包含要查的⼦串
System.out.println("hello world".matches("(.*)wor(.*)"));
// 19.测试两个字符串区域是否相等。
/**
* public boolean regionMatches(boolean ignoreCase, int toffset, String other,
* int ooffset, int len) 参数 ignoreCase -- 如果为 true,则⽐较字符时忽略⼤⼩写。默认为false toffset
* -- 此字符串中⼦区域的起始偏移量。 other -- 字符串参数。 ooffset -- 字符串参数中⼦区域的起始偏移量。 len --* 要⽐较的字符数。
*/
System.out.println("hellohellohello".regionMatches(true, 5, "hello", 0, 5));
// 20.返回⼀个新的字符串,它是通过⽤ newChar 替换此字符串中出现的所有 oldChar 得到的。
System.out.println("*****".replace("*", "+"));
// 21.replaceAll() ⽅法使⽤给定的参数 replacement 替换字符串所有匹配给定的正则表达式的⼦字符串。
/**
* public String replaceAll(String regex, String replacement) regex --
* 匹配此字符串的正则表达式。 newChar -- ⽤来替换每个匹配项的字符串。 成功则返回替换的字符串,失败则返回原始字符串。
*/
System.out.println("hello world".replaceAll("(.*)world(.*)", "nice!!"));
// 22.replaceFirst() ⽅法使⽤给定的参数 replacement 替换字符串第⼀个匹配给定的正则表达式的⼦字
符串。
/**
* public String replaceFirst(String regex, String replacement) regex --
* 匹配此字符串的正则表达式。 replacement -- ⽤来替换第⼀个匹配项的字符串。 成功则返回替换的字符串,失败则返回原始字符串。*/
System.out.println("hello world".replaceFirst("(.*)world(.*)", "nice!!"));
// 23.split() ⽅法根据匹配给定的正则表达式来拆分字符串。
// public String[] split(String regex, int limit)
/**
* regex -- 正则表达式分隔符。 limit -- 分割的份数。 返回值:字符串数组。
*/
System.out.println("hello - hello - world".split("-", 2));
// 24.测试此字符串是否以指定的前缀开始。
System.out.println("dehello".startsWith("de"));
// 25.测试此字符串从指定索引开始的⼦字符串是否以指定前缀开始。
System.out.println("0123dehello".startsWith("de", 3));
// 26.subSequence() ⽅法返回⼀个新的字符序列,它是此序列的⼀个⼦序列。
// public CharSequence subSequence(int beginIndex, int endIndex)
// 相同的⽅法还有:
// String substring(int beginIndex)
// String substring(int beginIndex, int endIndex)
/**
* 截取操作 参数: beginIndex -- 起始索引(包括)。 endIndex -- 结束索引(不包括)。 返回值:返回截取的部分
*/
System.out.println("0123hello9".subSequence(4, 9));
// 27.将此字符串转换为⼀个新的字符数组。
System.out.println("hello".toCharArray());
// 28.使⽤默认语⾔环境的规则将此 String 中的所有字符都转换为⼩写。
// String toLowerCase()
// 29. 返回此对象本⾝(它已经是⼀个字符串!)。
// String toString()
// 30.使⽤默认语⾔环境的规则将此 String 中的所有字符都转换为⼤写。
// String toUpperCase()
// 31.返回字符串的*副本*,忽略前导空⽩和尾部空⽩。
/
/ String trim()
// 32.返回给定data type类型x参数的字符串表⽰形式。
/**
* valueOf(boolean b): 返回 boolean 参数的字符串表⽰形式。. valueOf(char c): 返回 char
* 参数的字符串表⽰形式。 valueOf(char[] data): 返回 char 数组参数的字符串表⽰形式。 valueOf(char[] data, * int offset, int count): 返回 char 数组参数的特定⼦数组的字符串表⽰形式。 valueOf(double d): 返回
* double 参数的字符串表⽰形式。 valueOf(float f): 返回 float 参数的字符串表⽰形式。 valueOf(int i): 返回
* int 参数的字符串表⽰形式。 valueOf(long l): 返回 long 参数的字符串表⽰形式。 valueOf(Object obj): 返回* Object 参数的字符串表⽰形式。
*/
// 33.contains() ⽅法⽤于判断字符串中是否包含指定的字符或字符串。
// public boolean contains(CharSequence chars)
System.out.println("hello world".contains("o w"));
// 34.判断字符串是否为空。
// isEmpty()
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论