How to remove the other characters in here?:
I want to display full Address only
Thanks in advance
@Enohara said: How to remove the other characters in here?: I want to display full Address only Thanks in advance
@Enohara said: How to remove the other characters in here?:
Use
Address.Text= Address.Text.Trim( new Char[] { ' ', '*', '.' } )); // add all characters which you want to remove
@Charwaka Sir, i haven't try it yet but, what i want to happen is for the address to view the whole address only, without any characters or any unnecessary characters. I want it to be like this...
Address with format
ex: House No./Street/Compound/City/Region/
That is the format that i want..
But still, thanks for your answer
and thanks in advance
Answers
Use
Address.Text= Address.Text.Trim( new Char[] { ' ', '*', '.' } )); // add all characters which you want to remove
@Charwaka Sir, i haven't try it yet but, what i want to happen is for the address to view the whole address only, without any characters or any unnecessary characters. I want it to be like this...
Address with format
ex: House No./Street/Compound/City/Region/
That is the format that i want..
But still, thanks for your answer
and thanks in advance