Click or drag to resize

EAPUtilReplaceCaseInsensitive Method (String, String, String)

A fast, case-insensitive string replacement function.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static string ReplaceCaseInsensitive(
	string original,
	string pattern,
	string replacement
)

Parameters

original
Type: SystemString
The string in which to make the replacement.
pattern
Type: SystemString
The pattern to replace.
replacement
Type: SystemString
The string with which to replace the pattern.

Return Value

Type: String
The original string with all instances of (case-insensitive) pattern replaced with replacement.
See Also