toDotSeparated | R Documentation |
Converts a string from camelCase or underscore_separated format to dot.separated.name format. Inserts dots before each uppercase letter (except if it's the first character) or replaces underscores with dots, and then converts the entire string to lowercase.
toDotSeparated(input_string, toclipboard = TRUE)
input_string |
A character string in camelCase or underscore_separated format to be converted. Default: No default value, a string must be provided. |
toclipboard |
Copy to clipboard? Default: TRUE |
A character string converted to dot-separated format. The result is always in lowercase.
toDotSeparated("plotMetadataCorHeatMap")
toDotSeparated("plot_Metadata_Cor_HeatMap")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.