java如何实现替换指定位置的指定字符串的功能

Posted 逃亡中_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java如何实现替换指定位置的指定字符串的功能相关的知识,希望对你有一定的参考价值。

/**
 * @创建日期 2013-07-15
 * @创建时间 14:25:59
 * @版本号 V 1.0
 */
public class CosTest {
    public static void main(String[] args) {
        String sql = "select * from teacher  where id = ? and name = ?";
        System.out.println(replaceString(sql,"101",2));
    }
 
    public static String replaceString(String str, String rstr, int a) {
        String searchStr = "?";
        int index = str.indexOf(searchStr);
        int count = 1;
        while (count != a) {
            index = str.indexOf(searchStr, index + 1);
            count++;
        }
 
        return str.substring(0, index) + rstr + str.substring(index + 1);
    }
}

以上是关于java如何实现替换指定位置的指定字符串的功能的主要内容,如果未能解决你的问题,请参考以下文章

java怎么删除字符串中的指定字符

java 字符串替换

VB编程,实现字符串替换功能

java 读取读取指定字符的前一字符

javascript 替换指定位置的字符

sed 怎样在文本里指定位置插入字符