ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / String functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
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).
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: wd300std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/18/2024

Send a report | Local help