Have to change the character “^” to “255E”
String s_ysymbol = c1.getString(c1.getColumnIndex(DBConstants.YSYMBOL));
in this ysymbol starting charecter will be ^ have to change it to 255E and then have to do further process..
I tried the replace method
s_ysymbol.replace("^","255E");
but it not changing.. can anybody provide solution..
try this
s_ysymbol = s_ysymbol.replace("^","255E");