java中 去除String中的特殊符号保留字母和数字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中 去除String中的特殊符号保留字母和数字相关的知识,希望对你有一定的参考价值。

比如String str = “!#@$@<>":\|123adc ”输出为“123adc”

参考技术A import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; public class TestForOne public static void main(String[] args) String s=GetFiles("d:\\111.txt","",1); WriteFiles(s); public static String GetFiles(String BasePath,String Content, int f) /* * 读写文件操作 */ String s, s2 = new String(); try if (f == 1) BufferedReader in = new BufferedReader(new FileReader(BasePath)); while ((s = in.readLine()) != null) s2 += s + "\n"; in.close(); if(f==2) PrintWriter out1=new PrintWriter(new BufferedWriter(new FileWriter(BasePath))); out1.println(Content); out1.close(); catch (FileNotFoundException e) // TODO Auto-generated catch block e.printStackTrace();

Python移除指定文件夹中所有文件名称中的特殊字符(数字特殊字符空格等)只保留字母字符

Python移除指定文件夹中所有文件名称中的特殊字符(数字、特殊字符、空格等)、只保留字母字符

 

目录

以上是关于java中 去除String中的特殊符号保留字母和数字的主要内容,如果未能解决你的问题,请参考以下文章

在C++中,如何只保留字符串中的数字而去除字母和符号,请给出示例语句,谢谢

如何去除文件名中的特殊字符

java去除字符串中的特殊符号或指定的字符

456python string 类内容(去除文本标点)

Java正则校验密码至少包含:字母数字特殊符号中的2种

二:java语法基础: