Method OCIReplace
OCIReplace(String, String, String)
Replaces all instances of a substring in a given string with another using an ordinal and case insenstive comparison.
Declaration
public static string OCIReplace(this string value, string searchValue, string newValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | value | The value to replace the substring in. |
| System.String | searchValue | The substring to be replaced. |
| System.String | newValue | The new substring to use. |
Returns
| Type | Description |
|---|---|
| System.String | A System.String containing the replaced parts. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | Thrown if |