Quiest
I like turtles!
Is there any possible way to do this?
Let`s say I have the string variable sdf with the value "text", and I want to change the var from sdf="text" to sdf="x", meaning it should just delete all other letters except the third, like "blabla" would result into "a" for example.
Or much easier would be to assign a string to an array so that array[0]="t", array[1]="e", array[2]="x" and array[3]="t".
Another thing that would help me is to just roll or shift the letters in the string so "text" would result in "extt" or "ext", then "xtte" or "xt" after the next shift, then "ttex" or "t", and so on.
Sorry, it`s hard for me to explain that, please help!
Let`s say I have the string variable sdf with the value "text", and I want to change the var from sdf="text" to sdf="x", meaning it should just delete all other letters except the third, like "blabla" would result into "a" for example.
Or much easier would be to assign a string to an array so that array[0]="t", array[1]="e", array[2]="x" and array[3]="t".
Another thing that would help me is to just roll or shift the letters in the string so "text" would result in "extt" or "ext", then "xtte" or "xt" after the next shift, then "ttex" or "t", and so on.
Sorry, it`s hard for me to explain that, please help!