Bridge

String..::..Replace Method

Overload List


  Name Description
Public method Replace(Regex, String)
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.
Public method Replace(Regex, Delegate)
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.
Public method Replace(Regex, Func<(Of <<'(String, String>)>>))
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.
Public method Replace(Regex, Func<(Of <<'(String, Int32, String>)>>))
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.
Public method Replace(Regex, Func<(Of <<'(String, Int32, String, String>)>>))
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.
Public method Replace(String, String)
Returns a new string in which all occurrences of a specified string in the current instance are replaced with another specified string.
Public method Replace(Char, Char)
Returns a new string in which all occurrences of a specified Unicode character in this instance are replaced with another specified Unicode character.
Public method Replace(String, Delegate)
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.
Public method Replace(String, Func<(Of <<'(String, String>)>>))
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.
Public method Replace(String, Func<(Of <<'(String, Int32, String>)>>))
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.
Public method Replace(String, Func<(Of <<'(String, Int32, String, String>)>>))
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a Regex, and the replacement can be a string or a function to be called for each match.