R/striphash.R

striphash<-
  function (vect) {
    #' @export
    #' @title
    #' Remove # from String
    #' @description
    #' Removes the first \code{#} from each element of a string vector.
    #' @param vect String vector.
    #'
    #' @author
    #' Ivan Grishagin
    
    sub("#"
        , ""
        , vect)
  }
grishagin/RIGbiopax documentation built on May 24, 2019, 1:33 a.m.