Searching ASCII value in String Buffer

181 Views Asked by At

In my below code I am searching the location of s value is "þ" which is called as a value marker in Oracle. The equivalent ASCII value of þ=254. How to search with respect to 254 instead of þ?

for(int i=1;i<=sb.length();i++){
  locationofs=sb.indexOf("þ",i);
    if(locationofs>0)
      {
        i=locationofs;
        sb.replace(i, i+1, "\""+"\n"+"\""+RECID+"\""+";"+"\""); 
      }

Any help will be appreciated.

Thanks in Advance

1

There are 1 best solutions below

2
On

Try this. It works fine for me:

String temp[] = sb.toString().split(""+(char) 254);

sb = new StringBuffer(SIZE);
for(int i = 0; i < temp.length; i++) {
    sb.append(temp[i]).append("\"\n\""+RECID+"\";\"");
}

I have also simplified your line:

"\""+"\n"+"\""+RECID+"\""+";"+"\""
"\"\n\""+RECID+"\";\""

Hope it helps!