一、字符串“打劫!我有枪”,“枪”是敏感词汇,替换为“*”,并输出打印
package com.zuoye;
public class F1 {
public static void main(String[] args) {
String str="打劫!我有枪";
String str1="枪";
String f1=str.replace("枪", "*");
System.out.println("f1="+f1);
}
}
运行图
f1=打劫!我有*
Process finished with exit code 0
二、字符串“北京欢迎你”,替换字符为“郑州欢迎你们”,并输出打印
package com.zuoye;
public class F2 {
public static void main(String[] args) {
String f="北京欢迎你";
String[] str = {"北京"};
String[] str1 = {"你"};
for (int i = 0; i < str.length; i++) {
if (f.contains(str[i])) {
f= f.replace(str[i], "郑州");
f = f.replace(str1[i], "你们");
System.out.println(f);
}
}
}
}
运行效果
郑州欢迎你们
Process finished with exit code 0
三、字符串“面向对象是以对象为核心..编程思想”,获取并第一个下标和最后一个下标的字符,并输出打印
package com.zuoye;
public class F3 {
public static void main(String[] args) {
//定义的字符串
String a = "面向对象是以对象为核心..编程思想";
//用for循环获取下标
for (int i = 0; i < a.length(); i++) {
}
//charAt是获取字符串第i个字符
System.out.println(a.charAt(0));
System.out.println(a.charAt(a.length()-7));
}
}
运行效果
面
心
Process finished with exit code 0
四、将double类型的数据3.1415926转为字符串
package com.zuoye;
public class F4 {
public static void main(String[] args) {
double a = 3.1415926;
System.out.println("a = " + a);
String str = String.valueOf(a);
System.out.println("字符串str 的值: " + str);
}
}
运行效果
a = 3.1415926
字符串str 的值: 3.1415926
Process finished with exit code 0
五、判断一个字符串是否为空,如果为空,对其赋值,如果不为空,获取字符的个数并打印第一个字符
package com.zuoye;
public class F5 {
/*
* 判断一个字符串是否为空,如果为空,对其赋值,如果不为空,获取字符的个数并打印第一个字符
*/
public static void main(String[] args) {
String s="fanyunchangxihuanliyingyingying";
if (s.length()>0) {
System.out.println("此字符串不为空");
System.out.println("s = " + s.charAt(0));
System.out.println("字符串的长度为" + s.length());
System.out.println("第一个字符" + s.charAt(0));
}else {
s="hello word";
System.out.println("此字符串为空赋值为 hello word");
System.out.println("字符串的长度为" + s.length());
System.out.println("第一个字符" + s.charAt(0));
}
}
}
运行效果
此字符串不为空
s = f
字符串的长度为31
第一个字符f
Process finished with exit code 0
六、判断a在字符串abca中的位置,如果第一次出现的位置和最后一次出现的位置相同,则替换为*
package com.zuoye;
public class F6 {
/*
* 判断a在字符串abca中的位置,如果第一次出现的位置和最后一次出现的位置相同,则替换为*
*/
public static void main(String[] args) {
String a= "abcasasa";
System.out.println("a的下标为" + a.indexOf("a"));
System.out.println("a的下标为" + a.lastIndexOf("a"));
if (a.equals(a.charAt(0)) == a.equals(a.charAt(a.length()-1))) {
a="*bc*";
System.out.println("a = " + a);
}
}
}
运行效果
a的下标为0
a的下标为7
a = *bc*
Process finished with exit code 0
七、基本数据类型、包装类、字符串String三者之间的相互转换
以int为例:
1.int->包装类
包装类->int
2.int->String
String->int
3.包装类->String
String->包装类
package com.zuoye;
public class F7 {
public static void main(String[] args) {
int a = 20;//int
Integer a1 = a;//integer 包装类->int
int s = a1;// 包装类->int
//.int->包装类
System.out.println(Integer.toString(a));
System.out.println(s);
//int>string
String s1 = String.valueOf(a);
System.out.println(s1);
//string>int
int q = Integer.parseInt(s1);
System.out.println(q);
Integer a2 = 100000;
//包装类->String
String s3 = String.valueOf(a2);
System.out.println(s3);
//String->包装类
Integer a3 = Integer.valueOf(s3);
System.out.println(a3);
}
}
运行效果
20
20
20
20
100000
100000
Process finished with exit code 0