Learn R Programming

AmigaFFH (version 0.4.3)

as.character: Coerce an AmigaBasic class object to its character representation

Description

Coerce an AmigaBasic-class object to its character representation

Usage

# S3 method for AmigaBasic
as.character(x, ...)

Value

A vector of character strings, where each element of the vector is a character representation of a line of Amiga Basic code stored in x.

Arguments

x

An AmigaBasic class object that needs to be coerced to its character representation.

...

Currently ignored.

Author

Pepijn de Vries

Details

Amiga Basic files are encoded in a binary format and are also stored as such in AmigaBasic-class objects. Use this function to convert these objects into legible character data.

See Also

Other AmigaBasic.operations: AmigaBasic.reserved(), AmigaBasicBMAP, AmigaBasic, [.AmigaBasic(), as.AmigaBasicBMAP(), as.AmigaBasic(), check.names.AmigaBasic(), names.AmigaBasic(), rawToAmigaBasicBMAP(), rawToAmigaBasic(), read.AmigaBasicBMAP(), read.AmigaBasic(), write.AmigaBasic()

Examples

Run this code
if (FALSE) {
## First create an Amiga Basic object:
bas <- as.AmigaBasic("PRINT \"Hello world!\"")

## now convert the object back into text:
bas.txt <- as.character(bas)
}

Run the code above in your browser using DataLab