You can acheive it by using this code
int iend = a.indexOf("=");
if (iend != -1)
{
String B = a.substring(0 , iend);
}
2
solved Seperating String Left side =, and Right side of =
You can acheive it by using this code
int iend = a.indexOf("=");
if (iend != -1)
{
String B = a.substring(0 , iend);
}
2
solved Seperating String Left side =, and Right side of =