Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The Strings module contains procedures used to perform string operations.
Remarks
This module supports the Visual Basic language keywords and run-time library members that manipulate strings.
Members
Example
The following example demonstrates how to split a string at its spaces.
Dim TestString As String = "Look at these!"
' Returns an array containing "Look", "at", and "these!".
Dim TestArray() As String = Split(TestString)
See Also
Reference
Visual Basic Language Keywords