Programming Reference Manual
 
Syntax
 
string = stringclassoject.toURL([SpacePlus])
 
Description
Returns the URL encoded version of the StringClass variable, with optional markup for the '+' character.
 
Parameter
Description
SpacePlus
Optional. If True, converts the '+' to an hexcode and replaces spaces to '+'. Default value is True.
See Also
Example
 
Sub Main
 
   Dim myStr As New StringClass
  
   myStr.Append "Türkiye"
 
   Debug.Print myStr.toUTF8   'Türkiye
 
End Sub