解决方案 »

  1.   

     regexp_replace('abcdddccccaadbdh','.','1',10,1)
      

  2.   


    select regexp_replace('abcdddccccaadbdh', '.', '1', 10, 1) from dual;
      

  3.   


    select regexp_replace('abcdddccccaadbdh', '.', '1', 10, 1) from dual;谢谢!
    请问如果要改第10个和第11个呢?
      

  4.   


    select regexp_replace('abcdddccccaadbdh', '.', '1', 10, 1) from dual;谢谢!
    请问如果要改第10个和第11个呢?select regexp_replace('abcdddccccaadbdh', '.{2}', '11', 10, 1) from dual;
      

  5.   


    select regexp_replace('abcdddccccaadbdh', '.', '1', 10, 1) from dual;谢谢!
    请问如果要改第10个和第11个呢?select regexp_replace('abcdddccccaadbdh', '.{2}', '11', 10, 1) from dual;非常感谢!
      

  6.   


    select regexp_replace('abcdddccccaadbdh', '.', '1', 10, 1) from dual;谢谢!
    请问如果要改第10个和第11个呢?select regexp_replace('abcdddccccaadbdh', '.{2}', '11', 10, 1) from dual;学习了