ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / String functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
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).
New in version 2024
IOS Widget This function is now available in iOS widget mode.
iPhone/iPad This function is now available for iPhone/iPad applications.
Mac Catalyst This function is now available in Catalyst mode.
Example
// 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
Component: wd290std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 11/21/2023

Send a report | Local help