to_ascii
Description:
[ CCode ( cname = "g_str_to_ascii" ) ]
public string to_ascii (string? from_locale = null)
Transliterate str
to plain ASCII.
For best results, str
should be in composed normalised form.
This function performs a reasonably good set of character replacements. The particular set of replacements that is done may change by version or even by runtime environment.
If the source language of str
is known, it can used to improve the accuracy of the translation by passing it as from_locale
. It should be a valid POSIX locale string (of the form `language_territory[modifier
]`).
If from_locale
is null then the current locale is used.
If you want to do translation for no specific locale, and you want it to be done independently of the currently locale, specify `"C"` for
from_locale
.
Parameters:
from_locale |
the source locale, if known |
str |
a string, in UTF-8 |
Returns:
a string in plain ASCII |