This function either checks for the presence of backticks in a string or removes them, based on the specified action.
clean_string(input_string, action = c("check", "remove"))
A character string to be processed.
A character string specifying the action to perform. Either "check" to check for backticks or "remove" to remove backticks. Defaults to "check".
If action is "check", returns a logical value indicating the presence of backticks. If action is "remove", returns the input string with all backticks removed.