Returns the phonetic transcription of the string passed as parameter. This allows you to find out whether two character strings are phonetically similar (according to French phonetics).
// Compare two character strings
MyString1 is string = Phonetic("volant")
MyString2 is string = Phonetic("volent")
IF MyString1 = MyString2 THEN
Trace("Same phonetic transcription")
ELSE
Trace("Different phonetic transcription")
END
Syntax
<Result> = Phonetic(<Initial string>)
<Result>: Character string
Pseudo-phonetic transcription of <Initial string>.
<Initial string>: Character string
String to be converted to a phonetic transcription. This string is not modified.
Business / UI classification: Neutral code