查找某个字符在字符串中的各个位置记录_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 查找某个字符在字符串中的各个位置记录

查找某个字符在字符串中的各个位置记录

 2012/6/1 16:46:37  荒村听雨31  程序员俱乐部  我要评论(0)
  • 摘要://查找某个字符在字符串中的各个位置记录Stringsql="SELECT1FROMDUALWHERE1=1AND2=2{ANDny=$1}{ANDorg_no=$2}";intcount=StringUtils.countMatches(sql,"{");int[]indexs=newint[count];intindex=0;for(intidx=0;(idx=sql.indexOf("{",idx))!=-1;idx+="{".length()){indexs[index++]=idx;
  • 标签:查找 字符串

?

? ? ? ? ? ? ? ?//查找某个字符在字符串中的各个位置记录

String sql = " SELECT 1 FROM DUAL WHERE 1=1 AND 2=2 {AND ny = $1} { AND org_no = $2}";

int count = StringUtils.countMatches(sql, "{");

int[] indexs = new int[count];

? ? ? ? int index = 0;

? ? ? ? for(int idx = 0; (idx = sql.indexOf("{", idx)) != -1; idx += "{".length()){

? ? ? ?indexs[index++] = idx;

??}

? ? ? ? for(int i:indexs){

? ? ? ?System.out.println("----------- index = " + i);

? ? ? ?}

?

?

发表评论
用户名: 匿名