Skip to contents

Validate CARC Codes

Usage

is_carc_code(x)

Arguments

x

<chr> vector of CARC adjustment codes; should be of the form GROUP-CARC, where GROUP is two letters, followed by a dash (-) and CARC is a two-to-three character alphanumeric string.

Value

a tibble

Examples

x <- c("- 253", "OA-23", "PI-", "-45 ", "OA23")

is_carc_code(x)
#> [1]  TRUE  TRUE FALSE  TRUE  TRUE

x[which(is_carc_code(x))]
#> [1] "- 253" "OA-23" "-45 "  "OA23"