names.AmigaBasic {AmigaFFH} | R Documentation |
Extract or replace variable and label names from Amiga Basic scripts
Description
In the binary Amiga Basic files, names for labels and variables in the code are stored at the end of the file. In the encoded there is only a pointer to the index of the name in that list. Use this function to list, select or replace names included in the code
Usage
## S3 method for class 'AmigaBasic'
names(x)
## S3 replacement method for class 'AmigaBasic'
names(x) <- value
Arguments
x |
An |
value |
A ( |
Details
Make sure that variable and label names are valid for the basic script (see check.names.AmigaBasic).
Value
A vector
of character
strings with label and variable names in the basic script.
In case of the replacement method a AmigaBasic()
-class with replaced names is returned.
Author(s)
Pepijn de Vries
See Also
Other AmigaBasic.operations:
AmigaBasic.reserved()
,
AmigaBasicBMAP
,
AmigaBasic
,
[.AmigaBasic()
,
as.AmigaBasicBMAP()
,
as.AmigaBasic()
,
as.character()
,
check.names.AmigaBasic()
,
rawToAmigaBasicBMAP()
,
rawToAmigaBasic()
,
read.AmigaBasicBMAP()
,
read.AmigaBasic()
,
write.AmigaBasic()
Examples
## Let's create some Basic code with labels and variables:
bas <- as.AmigaBasic(c(
"REM - This will loop forever...",
"my.label:",
" my.variable% = 0",
" WHILE my.variable% < 10",
" my.variable% = my.variable% + 1",
" WEND",
" GOTO my.label"
))
## list the names in the script above:
names(bas)
## change the first name:
names(bas)[1] <- "better.label"