J
John A Grandy
Dim s As String
s = ", ,, 1573 ,,"
s.Replace(",","").Replace(" ","")
doesn't give the desired result "1573" ... apparently because s.Replace()
returns a new String instance ...
so i figured this would work
s = s.Replace(",","").Replace(" ","")
but again, i don't get the desired result
i though
s = ", ,, 1573 ,,"
s.Replace(",","").Replace(" ","")
doesn't give the desired result "1573" ... apparently because s.Replace()
returns a new String instance ...
so i figured this would work
s = s.Replace(",","").Replace(" ","")
but again, i don't get the desired result
i though