fork(5) download
  1. library(dplyr)
  2. library(stringr)
  3.  
  4. ! str_detect("THE QUEEN’S HAND", "[[:lower:]]")
  5. ! str_detect("##45$&%&3#", "[[:lower:]]")
  6. ! str_detect("THE QUEEN’s HAND\n", "[[:lower:]]")
  7. ! str_detect("aa", "[[:lower:]]")
Success #stdin #stdout #stderr 0.5s 51640KB
stdin
Standard input is empty
stdout
[1] TRUE
[1] TRUE
[1] FALSE
[1] FALSE
stderr
Attaching package: ‘dplyr’

The following objects are masked from ‘package:stats’:

    filter, lag

The following objects are masked from ‘package:base’:

    intersect, setdiff, setequal, union