EVOLUTION-MANAGER
Edit File: replace_special_characters_internal.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Internal helper to replace special characters.</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for replace_special_characters_internal {snakecase}"><tr><td>replace_special_characters_internal {snakecase}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Internal helper to replace special characters.</h2> <h3>Description</h3> <p>Internal helper to replace special characters. </p> <h3>Usage</h3> <pre> replace_special_characters_internal(string, transliterations, case) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>string</code></td> <td> <p>A string (for example names of a data frame).</p> </td></tr> <tr valign="top"><td><code>transliterations</code></td> <td> <p>A character vector (if not <code>NULL</code>). The entries of this argument need to be elements of <code>stringi::stri_trans_list()</code> (like "Latin-ASCII", which is often useful) or names of lookup tables (currently only "german" is supported). In the order of the entries the letters of the input string will be transliterated via <code>stringi::stri_trans_general()</code> or replaced via the matches of the lookup table. When named character elements are supplied as part of 'transliterations', anything that matches the names is replaced by the corresponding value. You should use this feature with care in case of <code>case = "parsed"</code>, <code>case = "internal_parsing"</code> and <code>case = "none"</code>, since for upper case letters, which have transliterations/replacements of length 2, the second letter will be transliterated to lowercase, for example Oe, Ae, Ss, which might not always be what is intended. In this case you can make usage of the option to supply named elements and specify the transliterations yourself.</p> </td></tr> <tr valign="top"><td><code>case</code></td> <td> <p>Length one character, from the input options of <code>to_any_case</code>.</p> </td></tr> </table> <h3>Value</h3> <p>A character vector. </p> <h3>Author(s)</h3> <p>Malte Grosser, <a href="mailto:malte.grosser@gmail.com">malte.grosser@gmail.com</a> </p> <hr /><div style="text-align: center;">[Package <em>snakecase</em> version 0.11.0 <a href="00Index.html">Index</a>]</div> </body></html>