I have string str="Arts And Props"
now i want to replace space in string with null.
means i want result as str="ArtsAndProps"
Answer Posted / thava
str = replace(str," ","")
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers