remove white spacing between letters in string
-
I Have A Problem in Removing white spaces between letters in single string word which retrieved from sql data Base :confused: thanks , Mona
LA ELAH ELA ALLAH MOHAMED RASOL ALLAH
-
I Have A Problem in Removing white spaces between letters in single string word which retrieved from sql data Base :confused: thanks , Mona
LA ELAH ELA ALLAH MOHAMED RASOL ALLAH
If you just want to remove all whitespaces...
private string StripWhitespace(string input) {
return input.Replace(" ", "").Replace("\t", "").Replace("\n", "");
}If that's not what you're after, you'll have to be more specific.
Try code model generation tools at BoneSoft.com.
-
If you just want to remove all whitespaces...
private string StripWhitespace(string input) {
return input.Replace(" ", "").Replace("\t", "").Replace("\n", "");
}If that's not what you're after, you'll have to be more specific.
Try code model generation tools at BoneSoft.com.
-
Care to give an example? What is the string from the DB? What should it look like? What have you tried? Hogan