Converts accented characters in a string to non-accented characters.
NoAccent("élan") // Returns "elan"
NoAccent("fiancée") // Returns "fiancee"
NoAccent("") // Returns ""
Syntax
<Result> = NoAccent(<Initial string>)
<Result>: Character string
Character string in which all the accented characters have been replaced by non-accented characters.
<Initial string>: Character string
Initial character string.
Remarks
If the string passed as a parameter is an ANSI string, the result will be an ANSI string.
If the string passed as a parameter is a UNICODE string, the result will be a UNICODE string.
Remark: If the result of NoAccent on an ANSI string is assigned to a UNICODE string (and vice versa), the conversion will be implicitly performed.