-
Notifications
You must be signed in to change notification settings - Fork 0
M_Ekstrand_Text_StringOperations_Replace
Returns a new string in which all occurrences of all Unicode character in an array with the specified Unicode character.
Namespace: Ekstrand.Text
Assembly: StringOperations (in StringOperations.dll) Version: 1.0.0.3 (1.0.0.3)
C#
public static string Replace(
this string str,
char[] oldChars,
char newChar
)
VB
<ExtensionAttribute>
Public Shared Function Replace (
str As String,
oldChars As Char(),
newChar As Char
) As String
C++
public:
[ExtensionAttribute]
static String^ Replace(
String^ str,
array<wchar_t>^ oldChars,
wchar_t newChar
)
F#
[<ExtensionAttribute>]
static member Replace :
str : string *
oldChars : char[] *
newChar : char -> string
- str
- Type: System.String
String to have its characters replaced. - oldChars
- Type: System.Char[]
Character array of characters to be replaced. - newChar
- Type: System.Char
Character to replace all occurrences found.
Type: String
Returns a new string with all occurrences of the defined characters replaced.
In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
StringOperations Class
Replace Overload
Ekstrand.Text Namespace
Copyright © 2019 Fred Ekstrand Jr
Send comments on this topic to fredekstrandGithub@gmail.com
Created using: Sandcastle Help File Builder
-
Ekstrand.Text Namespace
-
StringOperations Class
-
StringOperations Methods
- StringOperations.EscapeIllegalChars Method
- StringOperations.FirstCharToLowercase Method
- StringOperations.FirstCharToUppercase Method
- StringOperations.PadCenter Method
- StringOperations.PadCenterCrop Method
- StringOperations.PadLeftCrop Method
- StringOperations.PadRightCrop Method
- StringOperations.Remove Method
- StringOperations.Replace Method
- StringOperations.ToTitleCase Method
-
StringOperations Methods
- StringUtil Class
-
StringOperations Class