Help to manipulate Strings

Hi,
Situation:
string: 1234567890
What I need:
string: 12.34.567.890

i don’t know what i have to do to split this string and insert dots.

Thank you all!

1 Like

β€œ1234567890”.Insert(2,β€œ.”).Insert(5,β€œ.”).Insert(9,β€œ.”)

2 Likes

It’s working

Thank you!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.