通过调用构造方法: public String(char value[]);
语法:String str = new String(字符数组名)
类型:构造
public class Test {
public static void main(String[] args) {
char[] val = {'a','b','c'};
String str = new String(val);
System.out.println(str);
}
}
通过调用构造方法: public String(char value[],int offset,int count);
语法:String str = new String(字符数组名,偏移量/下标,偏移量的位置开始,转化多少个字符为字符串)
类型:构造
public class Test {
public static void main(String[] args) {
char[] val = {'a','b','c','d','e'};
String str = new String(val,1,4);
System.out.println(str);
}
}
语法:char 字符变量 = 字符串变量.charAt(下标)
获取字符串对应的下标元素。
public class Test {
public static void main(String[] args) {
String str = "hello";
char ch = str.charAt(4);// 获取下标为4的字符 o
System.out.println(ch);
}
}
语法: Char[] 数组名 = 字符串变量.toCharArray();
import java.util.Arrays;
public class Test {
public static void main(String[] args) {
String str = "hello";
// 将 str指向的字符串对象,转换成 字符数组对象,并将其地址返回。
char[] chars = str.toCharArray();
System.out.println(Arrays.toString(chars));
}
}
public class Test {
public static boolean isNumberChar(String s){
for (int i = 0; i < s.length(); i++) {
char c =s.charAt(i);
if ('0'>c || c>'9'){
return false;
}
}
return true;
}
public static void main(String[] args) {
String str = "12345";
System.out.println(isNumberChar(str));
}
}
&ensp;
代码如下:
public class Test {
public static boolean isNumberChar(String s){
for (int i = 0; i < s.length(); i++) {
char c =s.charAt(i);
boolean flg = Character.isDigit(c);
if(flg == false){
return flg;
}
}
return true;
}
public static void main(String[] args) {
String str = "1234a";
System.out.println(isNumberChar(str));
}
}
&ensp;
通过调用构造方法 public String(byte bytes[]);
语法 : String 字符串变量名 = new String(字节类型的数组名)
类型:构造
public class Test {
public static void main(String[] args) {
byte[] bytes = {97,98,99,100};
String str = new String(bytes);
System.out.println(str);
}
}
通过调用构造方法 public String(byte bytes[], int offset, int length);
方法: String 字符串变量 = new String(字节数组名, 偏移量/下标, 从指定的下标位置开始,转换多少个元素,为字符串)
类型:构造
public class Test {
public static void main(String[] args) {
byte[] bytes = {97,98,99,100};
String str = new String(bytes,1,3);
System.out.println(str);
}
}
语法: byte[] bytes = 字符串变量.getBytes();
import java.util.Arrays;
public class Test {
public static void main(String[] args) {
String str = "abcd";
byte[] bytes = str.getBytes();
System.out.println(Arrays.toString(bytes));
}
}
public class Test {
public static void main(String[] args) throws UnsupportedEncodingException {
String str = "abcd";
byte[] bytes = str.getBytes("utf-8");// 如果出现警告,那是你们没有抛异常,
//选择报错部分,alt + enter,第一个add的那个就是 处理抛出异常,你就会发现 main 方法后面多出一个 多出一部分
System.out.println(Arrays.toString(bytes));
}
}
byte[] 是把 String 按照一个字节一个字节的方式处理, 这种适合在网络传输, 数据存储这样的场景下使用. 更适合针对二进制数据来操作.
char[] 是吧 String 按照一个字符一个字符的方式处理, 更适合针对文本数据来操作, 尤其是包含中文的时候
总得来说分为两种 1. 真假比较,2.大小比较
语法: 字符串变量A(非null).equals(字符串常量B)
调用者/字符串变量A,不能为 null,是为了避免空指针异常.
真假比较 - 可以参考String Class - 字符串类型 - 上半部分讲解,真假比较和equals这块,在这篇博客讲了。
语法:字符串变量A(非null).equalsIgnoreCase(字符串变量B),
调用者/字符串变量A,不能为 null,是为了避免空指针异常.
IgnoreCase 就是忽略大小写的意思
语法:字符串变量A(非null).compareTo(字符串变量B)
调用者/字符串变量A,不能为 null,是为了避免空指针异常.
结果大于0,说明字符串A 比 字符串B 要大
结果小于0,说明字符串A 比 字符串B 要小
结果等于0,说明字符串A 比 字符串B 相等
语法: 字符串变量A(非null).contains(字符串变量B)
调用者/字符串变量A,不能为 null,是为了避免空指针异常.
public class Test {
public static void main(String[] args) {
String str = "abababcabababcd";
String tmp = "abc";// 字符串tmp 的 abc,字符串str 是有的
boolean b = str.contains(tmp);// contains 会帮我们找到在 str中,从前往后找第一次出现的 abc
// 找到了就返回 true,没找到就false。
System.out.println(b);
}
}
语法:字符串变量A(非null).indexOf(字符串变量B)
调用者/字符串变量A,不能为 null,是为了避免空指针异常.
语法:字符串变量A(非null).indexOf‘(字符串变量B,指定的位置)’
(调用者/字符串变量A,不能为 null,是为了避免空指针异常.)
其实就是上一个方法中,多加了一个指定搜索位置。
要求从指定的位置开始查找子串。
找到就返回开始位置的索引,没找就返回 -1.
public class Test {
public static void main(String[] args) {
String str = "abababcabababcd";
String tmp = "abc";
int index = str.indexOf(tmp,5);
System.out.println(index);
}
}
语法: 字符串变量A(非null).lastIndex‘Of(字符串变量B): -—— last 就是最后的意思;。
调用者/字符串变量A,不能为 null,是为了避免空指针异常.
public class Test {
public static void main(String[] args) {
String str = "abababcabababcd";
String tmp = "abc" ;
int lastIndex = str.lastIndexOf(tmp);
System.out.println(lastIndex);
}
}
语法:字符串变量A(非null).startWith(“字符串”);
public class Test {
public static void main(String[] args) {
String str = "abababcabababcd";
System.out.println(str.startsWith("a"));
System.out.println(str.startsWith("abab"));
System.out.println(str.startsWith("abc"));
}
}
语法: 字符串变量A(非null).endsWith(“字符串”);
使用一个指定的新字符串替换掉已有的字符串数据,
语法:String 字符串变量A = replace(‘旧字符’,‘新字符’)
语法:String 字符串变量A = replace(’“旧字符串”,“新字符串”)
语法:String 字符串变量A = replaceAll(“旧字符串”,“新字符串”)
将一个完整的字符串按照规定的分隔符分为若干个子字符串。
不知道有没有发现在我们看图片的时候,浏览器上方的地址
那么我们怎才能拿到分割的数据呢?,这时候就绪 使用split方法了
语法 字符串变量A.split(“分隔字符”)
但是我啊,还想进一步拆解,将等号两端的数据分割开来。
语法:字符串变量A.split("分割字符’,int limit );
情况3
从一个完整的字符串之中截取出部分内容。
语法: 字符串变量A.substring(指定索引/下标);
语法 String 字符串变量B = 字符串变量A.trim();
public class Test {
public static void main(String[] args) {
String str = " a d ";
String str1 = str.trim();
System.out.print(str1);
System.out.;print("=====");// 用来验证后面的空格也被删除了
}
}
public class Test {
public static void main(String[] args) {
String str = "abcDEF123道";
String str1 = str.toUpperCase();
System.out.println(str1);
}
}
public class Test {
public static void main(String[] args) {
String str = "abcDEF123道";
String str1 = str.toLowerCase();
System.out.println(str1);
}
}
public class Test {
public static void main(String[] args) {
String str1 = "ab";
String str2 = "cd";
String str3 = str1.concat(str2);
System.out.println(str3);
}
}
虽然大家都知道,但是有坑。
来看看下面代码中 两行代码的区别:
public class Test {
public static void main(String[] args) {
String str1 = "ab";
String[] str2 = new String[5];
System.out.println(str1.length());// 求字符串长度,是用的length方法
System.out.println(str2.length);// 求数组长度,length 是数组的一个属性,是一个整形变量。
注意面试中的笔试环节,手撕代码的时候,注意如果是求字符串长度,需要在length后面加括号。
数组则不用。
}
}
这里的空字符串不是null,而是字符串长度为0,例如"":双引号中什么都没有。
而这种 " " 这也不是空字符串,你这字符串是包含字符串空格的,
如果你搞错了,以为空指针时null,则会发生空指针异常
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/DarkAndGrey/article/details/121493662
内容来源于网络,如有侵权,请联系作者删除!