ColognePhonetics
The function implements the Cologne phonetics algorithm.
Compatibility
Available as of IDEA version 10.3
Syntax
ColognePhonetics(ByVal value As String) As String
Parameter
value
A string containing the value to convert.
Return Value
A string containing the result of the conversion.
Example
Option Explicit
Sub Main()
Dim cmds As Object
Set cmds = SmartContext.MacroCommands.SimpleCommands
Dim res As String
res = ColognePhonetics("Müller-Lüdenscheid") 'Expected result: 65752682
End Sub