Programming Reference Manual
 
Syntax
 
Text2Web(text$)
 
Description
Converts a string into a web enabled parameterstring, suitable for URL referencing.
 
Parameter
Description
text$
A string that must be converted into the URL enabled parameterstring.
See Also
Example
 
Sub Main
    Dim Repl$
    Repl$ = InputBox$(“Enter text:”)
    Repl$ = Text2Web(Repl$)
    Msgbox “Web-enabled: “ & Repl$
    Repl$ = Web2Text(Repl$)
    MsgBox “Original: ” & Repl$
End Sub