User`s manual
9-8
n
K
c
(Search and "Kill")
Tells the Computer to delete ail characters up to the nth occurrence of
character c, and move the cursor to that position. For example, using the
current version of line 100, suppose we want to delete the entire line up to
the END statement. Type EDIT 100
(
[ENTER]
),
and then type
2K
:
. This
tells the Computer to delete all characters up to the 2nd occurrence of the
colon. Display should show:
100 !FOR I=1 TO 15 STEP .25 : NEXT I!_
The second colon still needs to be deleted, so type
D
. The Display will now
show:
100 !FOR I=1 TO 15 STEP .25 : NEXT I!!:!_
Now hit
[ENTER]
and type LIST 100 (
[ENTER]
).
Line 100 should look something like this:
100 END










