使用Java正则表达式RegEx将所有特殊字符移动到字符串的末尾)
以下正则表达式匹配所有特殊字符,即除英语字母空格和数字外的所有字符。
"[^a-zA-Z0-9\\s+]"
要将所有特殊字符移动到给定行的末尾,请使用此正则表达式将所有特殊字符匹配为一个空字符串,最后将其余字符连接为另一个字符串,并连接这两个字符串。
例子1
public class RemovingSpecialCharacters { public static void main(String args[]) { String input = "sample # text * with & special@ characters"; String regex = "[^a-zA-Z0-9\\s+]"; String specialChars = ""; String inputData = ""; for(int i=0; i< input.length(); i++) { char ch = input.charAt(i); if(String.valueOf(ch).matches(regex)) { specialChars = specialChars + ch; } else { inputData = inputData + ch; } } System.out.println("Result: "+inputData+specialChars); } }
输出结果
Result: sample text with special characters#*&@
例子2
以下是Java程序,该程序使用Regex包的方法将字符串的特殊字符移到其末尾。
import java.util.regex.Matcher; import java.util.regex.Pattern; public class Test { public static void main(String args[]) { String input = "sample # text * with & special@ characters"; String regex = "[^a-zA-Z0-9\\s+]"; String specialChars = ""; System.out.println("Input string: \n"+input); //创建一个模式对象 Pattern pattern = Pattern.compile(regex); //匹配字符串中的已编译模式 Matcher matcher = pattern.matcher(input); //创建一个空的字符串缓冲区 StringBuffer sb = new StringBuffer(); while (matcher.find()) { specialChars = specialChars+matcher.group(); matcher.appendReplacement(sb, ""); } matcher.appendTail(sb); System.out.println("Result: \n"+ sb.toString()+specialChars ); } }
输出结果
Input string: sample # text * with & special@ characters Result: sample text with special characters#*&@