I don't know why it happens but try out like this to solve your problem
I hope your backing method returns a
string Public String myCurrentTab(){
String s1 = "Edit ";
String s2 = "your dynamic value";
String s3 = " Tab";
String con = s1+s2+s3;
return con;
}