powered by
This function checks if a given string adheres to camelCase naming conventions, starting with a lowercase letter followed by any combination of upper and lower case letters.
isCamelCase(x)
TRUE if the string is camelCase, FALSE otherwise.
A character string to check.
isCamelCase("camelCase") # returns TRUE isCamelCase("CamelCase") # returns FALSE isCamelCase("camelcase") # returns TRUE
Run the code above in your browser using DataLab