当前位置: 首页 > 知识库问答 >
问题:

如何使用字符串替换?[关闭]

公羊曜灿
2023-03-14

我有一个类似“I have a{node1}”的字符串

如何将node1替换为另一个单词。

我想使用正则表达式,但我总是出错

共有1个答案

涂溪叠
2023-03-14

您可以对所有替换Node1使用String类的replaceAll()方法。

 public static void main(String[] args) {
        String msg="I have a node1";
        msg=msg.replaceAll("node1", "word");
        System.out.println(msg);
    }
 类似资料: