Chapter 14. Working with Strings

Previous lessons provided a sneak peek at some of the things that a Visual Basic program can do with strings. Lesson 11 explained how you can use the & operator to concatenate two strings. Several lessons show how to use the ToString method to convert numeric values into strings that you can then display to the user.

In this lesson, you learn a lot more about strings. You learn about String class methods that let you search strings, replace parts of strings, and extract pieces of strings. You also learn new ways to format numeric and other kinds of data to produce strings.

STRING METHODS

The String class provides a lot of useful methods for manipulating strings. For example, the EndsWith method returns True if a string ends with a particular substring. The following code determines whether a string ends with the substring dog:

Dim str As String = "The quick brown fox jumps over the lazy dog"
MessageBox.Show("Ends with dog: " & str.EndsWith("dog"))

Table 14-1 summarizes the String class's most useful methods.

Table 14.1. TABLE 14-1

METHOD

PURPOSE

Contains

Returns True if the string contains a target string.

EndsWith

Returns True if the string ends with a target string.

IndexOf

Returns the index of a target character or string within the string.

IndexOfAny

Returns the index of the first occurrence of any of a set of characters in the string.

Insert

Inserts text in the middle of the string.

LastIndexOf

Returns the index of the last occurrence of a target character or string ...

Get Stephens' Visual Basic® Programming 24-Hour Trainer now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.