grepObjNames {rrMisc}R Documentation

Find objects whose names contain search string

Description

The function grepObjNames() gets the objects whose names contain the specified search string.

Usage

grepObjNames(part.name, ...)

Arguments

part.name

search string in object names

...

Arguments passed to further functions

Details

Unlike subset which works with '==' or '%in%', here search is performed in a fashion of 'like', meaning substrings are recognized.

Value

column names which values contain NAs or indication about NAs

Note

under continuous developement

Author(s)

Roland Rapold

References

none

See Also

grepColEntries grepColNames grepColNA grepNotCompleteEntries grepMultipleEntries grepRowNames grepColNegNum grepColFactors

Examples

    a  <- 1
    aa <- 1
    b  <- 1
    ab <- 1
    A  <- 1
    Aa <- 1
    b  <- 1
    print(grepObjNames("a"))
    print(grepObjNames("A"))
    print(grepObjNames("b"))

[Package rrMisc version 0.48 Index]