Learn R Programming

rmongodb (version 1.8.0)

as.character.mongo.oid: Convert a mongo.oid object to a string

Description

Convert a mongo.oid object to a string of 24 hex digits. This performs the inverse operation of mongo.oid.from.string().

Usage

"as"(x, ...)

Arguments

x
(mongo.oid) The OID to be converted.
...
Parameters passed from generic.

Value

(string) A string of 24 hex digits representing the bits of oid x.

Details

This function is an alias of mongo.oid.to.string() so that the class mechanism of R allows it to be called simply by as.character(oid).

See http://www.mongodb.org/display/DOCS/Object+IDs

See Also

mongo.oid, mongo.oid.create, as.character.mongo.oid, mongo.oid.to.string, mongo.bson.buffer.append, mongo.bson.buffer.append.oid, mongo.bson.buffer, mongo.bson.

Examples

Run this code
oid <- mongo.oid.create()
print(as.character.mongo.oid(oid))
print(as.character(oid))  # print same thing as above line

Run the code above in your browser using DataLab