Java 替换字符时给定字符保留其它字符替换成加号的方法

Java中,可以使用字符串的charAt方法来遍历字符串的每一个字符,并根据给定的字符进行替换。如果字符不是给定的字符,则替换为加号 (+)。本文主要介绍Java中替换字符串,方法指定的字符串不替换,其它字符替换成加号。

1、循环和检查

从输入字符串中创建一个StringBuilder,并检查每个位置的单词。如果不匹配则替换字符,如果找到则跳过单词的长度。

public class ReplaceCharacters {

    // 方法:将除了指定单词以外的所有字符替换为 '+'
    public static String plusOut(String str, String word) {
        // 使用 StringBuilder 来构建新的字符串
        StringBuilder out = new StringBuilder(str);

        // 遍历字符串
        for (int i = 0; i < out.length(); ) {
            // 检查从当前位置开始的子串是否以指定单词开头
            if (!str.startsWith(word, i)) {
                // 如果不是指定单词,则将该字符替换为 '+'
                out.setCharAt(i++, '+');
            } else {
                // 如果是指定单词,则跳过该单词的长度
                i += word.length();
            }
        }

        // 返回最终构建的字符串
        return out.toString();
    }

    public static void main(String[] args) {
        // 测试示例
        String input = "hello world, hello Java";
        String word = "hello";
        
        // 调用 plusOut 方法
        String result = plusOut(input, word);
        
        // 打印结果
        System.out.println("Original String: " + input);
        System.out.println("Modified String: " + result);
    }
}

2、用标记替换单词,替换其余单词,然后恢复单词

public class ReplaceCharacters {

    // 方法:将除指定单词以外的所有字符替换为 '+'
    public static String plusOut(String str, String word) {
        // 将所有出现的 word 替换为临时占位符 '@'
        String tempStr = str.replaceAll(java.util.regex.Pattern.quote(word), "@");

        // 将除 '@' 之外的所有字符替换为 '+'
        String plusReplacedStr = tempStr.replaceAll("[^@]", "+");

        // 将临时占位符 '@' 再替换回原始的 word
        return plusReplacedStr.replaceAll("@", word);
    }

    public static void main(String[] args) {
        // 测试示例
        String input = "12xy34xyabcxy";
        String word = "xy";
        String result = plusOut(input, word);

        // 打印结果
        System.out.println("Original String: " + input);
        System.out.println("Word to keep: " + word);
        System.out.println("Modified String: " + result);
    }
}

注意:使用它Pattern.quote来防止word被方法解释为正则表达式语法replaceAll。

3、使用正则表达式 \G

public class ReplaceCharacters {

    // 方法:将除了指定单词以外的所有字符替换为 '+'
    public static String plusOut(String str, String word) {
        // 转义正则表达式中特殊字符
        word = java.util.regex.Pattern.quote(word);
        // 使用正则表达式替换除指定单词以外的所有字符
        return str.replaceAll("\\G((?:" + word + ")*+).", "$1+");
    }

    public static void main(String[] args) {
        // 测试示例
        String input = "12xy34xyabcxy";
        String word = "xy";
        String result = plusOut(input, word);

        // 打印结果
        System.out.println("Original String: " + input);
        System.out.println("Modified String: " + result);
    }
}

4、通过stream()来实现

import java.util.Arrays;
import java.util.stream.Collectors;

public class ReplaceCharacters {

    // 方法:将除了指定子字符串以外的所有字符替换为 '+'
    public static String plusOut(String str, String word) {
        return String.join(word,
            Arrays.stream(str.split(java.util.regex.Pattern.quote(word), -1))
                  .map((String s) -> s.replaceAll("(?s:.)", "+"))
                  .collect(Collectors.toList()));
    }

    public static void main(String[] args) {
        // 测试示例
        String input = "12xy34xyabcxy";
        String word = "xy";
        String result = plusOut(input, word);

        // 打印结果
        System.out.println("Original String: " + input);
        System.out.println("Word to keep: " + word);
        System.out.println("Modified String: " + result);
    }
}

拆分字符串word,对其余部分进行替换,然后word使用using String.join方法将它们连接起来。

  • 与上面相同,我们需要Pattern.quote避免split将word正则表达式解释为正则表达式。由于split默认情况下会删除数组末尾的空字符串,因此我们需要-1在第二个参数中使用split这些空字符串。
  • 然后我们从数组中创建一个流,并将其余部分替换为字符串+。在Java 11中,我们可以使用s -> String.repeat(s.length())
  • 剩下的就是将Stream转换为Iterable(在这种情况下为List)并将它们连接起来以获得结果

推荐阅读
cjavapy编程之路首页