Name
Replace Function
Class
Microsoft.VisualBasic.Strings
Syntax
Replace(expression, find, replace [, _start[, count[, compare]]])
-
expression Use: Required
Data Type: String
The complete string containing the substring to be replaced
-
find Use: Required
Data Type: String
The substring to be found by the function
-
replace Use: Required
Data Type: String
The new substring to replace
findinexpression-
start Use: Optional
Data Type: Long
The character position in
expressionat which the search forfindbegins-
count Use: Optional
Data Type: Long
The number of instances of
findto replace-
compare Use: Optional
Data Type:
CompareMethodconstantThe method used to compare
findwithexpression; its value can beCompareMethod.Binary(for case-sensitive comparison) orCompareMethod.Text(for case-insensitive comparison)
Return Value
The return value from Replace depends on the
parameters you specify in the argument list, as the following table
shows.
|
If |
Return value |
|---|---|
|
|
Zero-length string (“”) |
|
|
Copy of |
|
|
Copy of |
|
|
Zero-length string (“”) |
|
|
Copy of |
Description
Replaces a given number of instances of a specified substring in another string
Rules at a Glance
If
startis omitted, the search begins at the start of the string.If
countis omitted, all instances of the substring afterstartare replaced.CompareMethod.BinaryCompareis case sensitive; that is,
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access