Hi All,
I have a input as : 050
I want the output as 05o
I want to replace the third character alone as o
Suggest me plz
Thanks…
Hi All,
I have a input as : 050
I want the output as 05o
I want to replace the third character alone as o
Suggest me plz
Thanks…
Hi Pravin,
Zero to o.
If there o already no need to replace it
variable1 as String
variable1.Remove(2,1).Insert(2,“NewValue”)
It will replace whatever you have at third position as 2 is index of character at third position
Thanks Pravin…it’s working
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.