E
Edwin Knoppert
I have a string like:
"abcdefg123456"
for readabillity i would like to insert a space at every 4th position like:
"abc def g12 345 6"
I can do this using % (mod) but isn't there an easier method?
"abcdefg123456"
for readabillity i would like to insert a space at every 4th position like:
"abc def g12 345 6"
I can do this using % (mod) but isn't there an easier method?