Modifying Strings
BlitzMax Forums/BlitzMax Beginners Area/Modifying Strings text = Left(text,Len(text)-1)
or
text = text[..Len(text)-1]
or
text = text[..Len(text)-1]
:D
Thanks!
So easy and yet took so long to find ;)
Thanks!
So easy and yet took so long to find ;)
Alternatives:
text :+ "d"
text = text[..text.length-1]
text :+ "d"
text = text[..text.length-1]