首页 > Java > java教程 > 正文

使用Java正则表达式将所有大写字母移动到字符串的末尾

王林
发布: 2023-08-25 13:21:20
转载
990 人浏览过

使用Java正则表达式将所有大写字母移动到字符串的末尾

子表达式 “[ ]” 匹配括号中指定的所有字符。因此,要将所有大写字母移动到字符串的末尾,需要执行以下步骤:

  • 遍历给定字符串中的所有字符。

  • 使用正则表达式 "[A-Z]" 匹配给定字符串中的所有大写字母。

  • 将特殊字符和剩余字符连接到两个不同的字符串中。

  • 最后,将特殊字符字符串连接到另一个字符串中。

示例 1

public class RemovingSpecialCharacters {
   public static void main(String args[]) {
      String input = "sample B text C with G upper case LM characters in between";
      String regex = "[A-Z]";
      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 upper case characters in betweenBCGLM
登录后复制

示例 2

下面是使用 Regex 包的方法将字符串的大写字母移动到末尾的 Java 程序。

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Test {
   public static void main(String args[]) {
      String input = "sample B text C with G upper case LM characters in between";
      String regex = "[A-Z]";
      String specialChars = "";
      System.out.println("Input string: \n"+input);
      //Creating a pattern object
      Pattern pattern = Pattern.compile(regex);
      //Matching the compiled pattern in the String
      Matcher matcher = pattern.matcher(input);
      //Creating an empty string buffer
      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 B text C with G upper case LM characters in between
Result:
sample text with upper case characters in betweenBCGLM
登录后复制

以上是使用Java正则表达式将所有大写字母移动到字符串的末尾的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板