seqinr (version 3.4-5)

s2c: conversion of a string into a vector of chars

Description

This is a simple utility function to convert a single string such as "BigBang" into a vector of chars such as c("B", "i", "g", "B", "a", "n", "g").

Usage

s2c(string)

Arguments

string

a string of chars

Value

a vector of chars. If supplied argument is not a single string, a warning is issued and NA returned.

References

citation("seqinr")

See Also

c2s

Examples

Run this code
# NOT RUN {
stopifnot(all(s2c("BigBang") == c("B", "i", "g", "B", "a", "n", "g")))
# }

Run the code above in your browser using DataCamp Workspace