S
Stijn VA
Okee, the story goes like this:
I have a string that can not contain spaces (It is retrieved from a
externat application...)
At first they replaced the spaces by '_' so somthing like "ABC DEF"
would be saved as "ABC_DEF".
All we did was something like:
str = str.Replace("_"," ");
I have a string that can not contain spaces (It is retrieved from a
externat application...)
At first they replaced the spaces by '_' so somthing like "ABC DEF"
would be saved as "ABC_DEF".
All we did was something like:
str = str.Replace("_"," ");