You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stopifnot("The id must be a character string"= is.null(id)||(is.character(id)&&length(id)==1&&nchar(id)>0))
998
-
stopifnot("The id must start with a letter, must be made of letters and underscores _ and cannot be longer than 32 characters"= is.null(id)||grepl("^[A-Za-z][A-Za-z0-9_]{0,31}$", id))
1008
+
stopifnot("The id must start with a letter, must be made of letters, numbers and underscores _ and cannot be longer than 32 characters"= is.null(id)||grepl("^[A-Za-z][A-Za-z0-9_]{0,31}$", id))
999
1009
stopifnot("The label is required to be a character string"= (is.character(label)&&length(label)==1&&nchar(label)>0))
1000
1010
stopifnot("The range is required and must be a character string"=!is.null(range)&&(is.character(range)&&length(range)==1&&nchar(range)>0))
stopifnot("The id must be a character string"= is.null(id)||(is.character(id)&&length(id)==1&&nchar(id)>0))
1152
-
stopifnot("The id must start with a letter, must be made of lowercase letters and underscores _ and cannot be longer than 32 characters"= is.null(id)||grepl("^[a-z][a-z0-9_]{0,31}$", id))
1163
+
stopifnot("The id must start with a letter, must be made of lowercase letters and numbers and cannot be longer than 32 characters"= is.null(id)||grepl("^[a-z][a-z0-9]{0,31}$", id))
1153
1164
1154
1165
stopifnot("The label is required to be a character string"= (is.character(label)&&length(label)==1&&nchar(label)>0))
0 commit comments