June 2003
Intermediate to advanced
800 pages
34h 20m
English
You want to find every time a certain pattern occurs in a string and alter the corresponding text.
Use the Regex.Replace method. You can supply either a string literal or a replacement expression for the new text.
The Regex.Replace method has several overloads and allows a great deal of flexibility. The simplest technique is to simply replace values with a fixed string literal. For example, imagine you have a string that could contain a credit card number in a specific format. You could replace all occurrences of any credit card number, without needing to know the specific number itself, by using a regular expression.
Here’s an example that obscures phone numbers:
Dim Expression ...
Read now
Unlock full access