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
Try this. It works fine for me:
I have also simplified your line:
Hope it helps!