Code: Select all
put "abc def" into tStr
delete char 1 of word 2 of tStr
also
delete char C of line L of ...
solution:
Code: Select all
get word 2 of tStr
delete char 1 of it
put it into word 2 of tStr
Moderator: Klaus
Code: Select all
put "abc def" into tStr
delete char 1 of word 2 of tStr
Code: Select all
get word 2 of tStr
delete char 1 of it
put it into word 2 of tStr
Code: Select all
put "abc def" into tStr
delete char 1 of word 2 of tStr
Code: Select all
put "abc def" into tStr
delete char 1 of word 2 of tStr
put tStr
Code: Select all
put "abc def" into tStr
delete BYTE 1 of word 2 of tStr
Yeah don’t think you should be mixing chunk keywords (like “word”) with binary keywords (like “byte”).
Code: Select all
Delete char 1 of word 2 of tStr