Android Question remove spacing in string

ronell

Well-Known Member
Licensed User
Longtime User
how to remove the space between the underlined string value?
"4PM3DLOC 123-12, 4PM3DLOC 258-25, 4PM3DLOC 258-25"
 

OliverA

Expert
Licensed User
Longtime User
Log("4PM3DLOC 123-12, 4PM3DLOC 258-25, 4PM3DLOC 258-25".Replace(", ",","))
 
Upvote 0
Top