当前位置:   article > 正文

获取和替换#{}中的内容_获取字符串中的#{}

获取字符串中的#{}
package StringTest;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Test {
    public static void main(String[] args) {
        String str = "select * from emp where name = #{name} and id = #{id}";

        //获取以 #{ 开始,不是 } 结尾的多个字符 (其中()用来分组)
        Pattern p = Pattern.compile("#\\{([^}]+)");
        Matcher m = p.matcher(str);

        //获取 #{} 中的内容
        while (m.find()){
            System.out.println(m.group(1));
        }

        //替换#{xxx},其中xxx是参数
        str = str.replaceAll("#\\{[^}]+\\}","?");
        System.out.println(str);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/315633
推荐阅读
相关标签
  

闽ICP备14008679号