String.Replace 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Replace(Char, Char) |
傳回新字串,其中這個執行個體中所有出現的指定 Unicode 字元都取代成其他指定的 Unicode 字元。 |
Replace(String, String) |
傳回新字串,其中目前執行個體中所有出現的指定字串,都取代成其他指定的字串。 |
Replace(String, String, StringComparison) |
傳回新字串,使用提供的比較類型,將目前執行個體中出現的所有指定字串都替換成另一個指定字串。 |
Replace(String, String, Boolean, CultureInfo) |
傳回新字串,使用提供的文化特性並區分大小寫,將目前執行個體中出現的所有指定字串都替換成另一個指定字串。 |
Replace(Char, Char)
傳回新字串,其中這個執行個體中所有出現的指定 Unicode 字元都取代成其他指定的 Unicode 字元。
public:
System::String ^ Replace(char oldChar, char newChar);
public string Replace (char oldChar, char newChar);
member this.Replace : char * char -> string
Public Function Replace (oldChar As Char, newChar As Char) As String
參數
- oldChar
- Char
要被取代的 Unicode 字元。
- newChar
- Char
要用來取代所有出現之 oldChar
的 Unicode 字元。
傳回
相當於這個執行個體的字串,只是 oldChar
的所有執行個體都會取代成 newChar
。 如果在目前的執行個體中找不到 oldChar
,則方法傳回未變更的目前執行個體。
範例
下列範例會藉由替代一系列數位之間的空白逗號來建立逗號分隔值清單。
using namespace System;
int main()
{
String^ str = "1 2 3 4 5 6 7 8 9";
Console::WriteLine( "Original string: \"{0}\"", str );
Console::WriteLine( "CSV string: \"{0}\"", str->Replace( ' ', ',' ) );
}
//
// This example produces the following output:
// Original string: "1 2 3 4 5 6 7 8 9"
// CSV string: "1,2,3,4,5,6,7,8,9"
//
string str = "1 2 3 4 5 6 7 8 9";
Console.WriteLine($"Original string: \"{str}\"");
Console.WriteLine($"CSV string: \"{str.Replace(' ', ',')}\"");
// This example produces the following output:
// Original string: "1 2 3 4 5 6 7 8 9"
// CSV string: "1,2,3,4,5,6,7,8,9"
let str = "1 2 3 4 5 6 7 8 9"
printfn $"Original string: \"{str}\""
printfn $"CSV string: \"{str.Replace(' ', ',')}\""
// This example produces the following output:
// Original string: "1 2 3 4 5 6 7 8 9"
// CSV string: "1,2,3,4,5,6,7,8,9"
Class stringReplace1
Public Shared Sub Main()
Dim str As [String] = "1 2 3 4 5 6 7 8 9"
Console.WriteLine("Original string: ""{0}""", str)
Console.WriteLine("CSV string: ""{0}""", str.Replace(" "c, ","c))
End Sub
End Class
' This example produces the following output:
' Original string: "1 2 3 4 5 6 7 8 9"
' CSV string: "1,2,3,4,5,6,7,8,9"
備註
這個方法會執行序數 (區分大小寫且不區分文化特性的搜尋) 搜尋來尋找 oldChar
。
注意
這個方法不會修改目前實例的值。 相反地,它會傳回新的字串,其中所有出現的 oldChar
都會由 newChar
取代。
因為這個方法會傳回修改的字串,所以您可以將方法的後續呼叫 Replace 鏈結在一起,以對原始字串執行多個取代。 方法呼叫是從左至右執行。 下列範例提供說明。
string s = new('a', 3);
Console.WriteLine($"The initial string: '{s}'");
s = s.Replace('a', 'b').Replace('b', 'c').Replace('c', 'd');
Console.WriteLine($"The final string: '{s}'");
// The example displays the following output:
// The initial string: 'aaa'
// The final string: 'ddd'
let s = new string('a', 3)
printfn $"The initial string: '{s}'"
let s2 = s.Replace('a', 'b').Replace('b', 'c').Replace('c', 'd')
printfn $"The final string: '{s2}'"
// The example displays the following output:
// The initial string: 'aaa'
// The final string: 'ddd'
Module Example
Public Sub Main()
Dim s As New String("a"c, 3)
Console.WriteLine("The initial string: '{0}'", s)
s = s.Replace("a"c, "b"c).Replace("b"c, "c"c).Replace("c"c, "d"c)
Console.WriteLine("The final string: '{0}'", s)
End Sub
End Module
' The example displays the following output:
' The initial string: 'aaa'
' The final string: 'ddd'
另請參閱
- Char
- Concat(Object)
- Insert(Int32, String)
- Join(String, String[])
- Remove(Int32, Int32)
- Split(Char[])
- Substring(Int32)
- Trim(Char[])
適用於
Replace(String, String)
傳回新字串,其中目前執行個體中所有出現的指定字串,都取代成其他指定的字串。
public:
System::String ^ Replace(System::String ^ oldValue, System::String ^ newValue);
public string Replace (string oldValue, string newValue);
public string Replace (string oldValue, string? newValue);
member this.Replace : string * string -> string
Public Function Replace (oldValue As String, newValue As String) As String
參數
- oldValue
- String
要被取代的字串。
- newValue
- String
用來取代所有出現之 oldValue
的字串。
傳回
相當於目前字串的字串,只是 oldValue
的所有執行個體都會取代成 newValue
。 如果在目前的執行個體中找不到 oldValue
,則方法傳回未變更的目前執行個體。
例外狀況
oldValue
為 null
。
oldValue
為空字串 ("")。
範例
下列範例示範如何使用 Replace 方法來更正拼字錯誤。
using namespace System;
int main()
{
String^ errString = "This docment uses 3 other docments to docment the docmentation";
Console::WriteLine( "The original string is:\n'{0}'\n", errString );
// Correct the spelling of S"document".
String^ correctString = errString->Replace( "docment", "document" );
Console::WriteLine( "After correcting the string, the result is:\n'{0}'", correctString );
}
//
// This code example produces the following output:
//
// The original string is:
// 'This docment uses 3 other docments to docment the docmentation'
//
// After correcting the string, the result is:
// 'This document uses 3 other documents to document the documentation'
//
string errString = "This docment uses 3 other docments to docment the docmentation";
Console.WriteLine($"The original string is:{Environment.NewLine}'{errString}'{Environment.NewLine}");
// Correct the spelling of "document".
string correctString = errString.Replace("docment", "document");
Console.WriteLine($"After correcting the string, the result is:{Environment.NewLine}'{correctString}'");
// This code example produces the following output:
//
// The original string is:
// 'This docment uses 3 other docments to docment the docmentation'
//
// After correcting the string, the result is:
// 'This document uses 3 other documents to document the documentation'
//
open System
let errString = "This docment uses 3 other docments to docment the docmentation"
printfn $"The original string is:{Environment.NewLine}'{errString}'{Environment.NewLine}"
// Correct the spelling of "document".
let correctString = errString.Replace("docment", "document")
printfn $"After correcting the string, the result is:{Environment.NewLine}'{correctString}'"
// This code example produces the following output:
//
// The original string is:
// 'This docment uses 3 other docments to docment the docmentation'
//
// After correcting the string, the result is:
// 'This document uses 3 other documents to document the documentation'
//
Public Class ReplaceTest
Public Shared Sub Main()
Dim errString As String = "This docment uses 3 other docments to docment the docmentation"
Console.WriteLine("The original string is:{0}'{1}'{0}", Environment.NewLine, errString)
' Correct the spelling of "document".
Dim correctString As String = errString.Replace("docment", "document")
Console.WriteLine("After correcting the string, the result is:{0}'{1}'", Environment.NewLine, correctString)
End Sub
End Class
'
' This code example produces the following output:
'
' The original string is:
' 'This docment uses 3 other docments to docment the docmentation'
'
' After correcting the string, the result is:
' 'This document uses 3 other documents to document the documentation'
'
備註
如果 newValue
為 null
,則會移除 所有出現的 oldValue
。
注意
這個方法不會修改目前實例的值。 相反地,它會傳回新的字串,其中所有出現的 oldValue
都會由 newValue
取代。
這個方法會執行序數 (區分大小寫且不區分文化特性的搜尋) 搜尋來尋找 oldValue
。
因為這個方法會傳回修改的字串,所以您可以將方法的後續呼叫 Replace 鏈結在一起,以對原始字串執行多個取代。 方法呼叫是從左至右執行。 下列範例提供說明。
string s = "aaa";
Console.WriteLine($"The initial string: '{s}'");
s = s.Replace("a", "b").Replace("b", "c").Replace("c", "d");
Console.WriteLine($"The final string: '{s}'");
// The example displays the following output:
// The initial string: 'aaa'
// The final string: 'ddd'
let s = "aaa"
printfn $"The initial string: '{s}'"
let s2 = s.Replace("a", "b").Replace("b", "c").Replace("c", "d")
printfn $"The final string: '{s2}'"
// The example displays the following output:
// The initial string: 'aaa'
// The final string: 'ddd'
Module Example
Public Sub Main()
Dim s As String = "aaa"
Console.WriteLine("The initial string: '{0}'", s)
s = s.Replace("a", "b").Replace("b", "c").Replace("c", "d")
Console.WriteLine("The final string: '{0}'", s)
End Sub
End Module
' The example displays the following output:
' The initial string: 'aaa'
' The final string: 'ddd'
另請參閱
- Concat(Object)
- Insert(Int32, String)
- Join(String, String[])
- Remove(Int32, Int32)
- Split(Char[])
- Substring(Int32)
- Trim(Char[])
適用於
Replace(String, String, StringComparison)
傳回新字串,使用提供的比較類型,將目前執行個體中出現的所有指定字串都替換成另一個指定字串。
public:
System::String ^ Replace(System::String ^ oldValue, System::String ^ newValue, StringComparison comparisonType);
public string Replace (string oldValue, string? newValue, StringComparison comparisonType);
public string Replace (string oldValue, string newValue, StringComparison comparisonType);
member this.Replace : string * string * StringComparison -> string
Public Function Replace (oldValue As String, newValue As String, comparisonType As StringComparison) As String
參數
- oldValue
- String
要被取代的字串。
- newValue
- String
用來取代所有出現之 oldValue
的字串。
- comparisonType
- StringComparison
列舉值之一,決定在此執行個體中搜尋 oldValue
的方式。
傳回
相當於目前字串的字串,只是 oldValue
的所有執行個體都會取代成 newValue
。 如果在目前的執行個體中找不到 oldValue
,則方法傳回未變更的目前執行個體。
例外狀況
oldValue
為 null
。
oldValue
為空字串 ("")。
備註
如果 newValue
為 null
,則會移除 所有出現的 oldValue
。
注意
這個方法不會修改目前實例的值。 相反地,它會傳回新的字串,其中所有出現的 oldValue
都會由 newValue
取代。
這個方法會執行搜尋,以使用 所 comparisonType
描述的文化特性和區分大小寫來尋找 oldValue
。
因為這個方法會傳回修改的字串,所以您可以將方法的後續呼叫 Replace 鏈結在一起,以對原始字串執行多個取代。 方法呼叫是從左至右執行。 下列範例提供說明。
string s = "aaa";
Console.WriteLine($"The initial string: '{s}'");
s = s.Replace("a", "b").Replace("b", "c").Replace("c", "d");
Console.WriteLine($"The final string: '{s}'");
// The example displays the following output:
// The initial string: 'aaa'
// The final string: 'ddd'
let s = "aaa"
printfn $"The initial string: '{s}'"
let s2 = s.Replace("a", "b").Replace("b", "c").Replace("c", "d")
printfn $"The final string: '{s2}'"
// The example displays the following output:
// The initial string: 'aaa'
// The final string: 'ddd'
Module Example
Public Sub Main()
Dim s As String = "aaa"
Console.WriteLine("The initial string: '{0}'", s)
s = s.Replace("a", "b").Replace("b", "c").Replace("c", "d")
Console.WriteLine("The final string: '{0}'", s)
End Sub
End Module
' The example displays the following output:
' The initial string: 'aaa'
' The final string: 'ddd'
適用於
Replace(String, String, Boolean, CultureInfo)
傳回新字串,使用提供的文化特性並區分大小寫,將目前執行個體中出現的所有指定字串都替換成另一個指定字串。
public:
System::String ^ Replace(System::String ^ oldValue, System::String ^ newValue, bool ignoreCase, System::Globalization::CultureInfo ^ culture);
public string Replace (string oldValue, string? newValue, bool ignoreCase, System.Globalization.CultureInfo? culture);
public string Replace (string oldValue, string newValue, bool ignoreCase, System.Globalization.CultureInfo culture);
member this.Replace : string * string * bool * System.Globalization.CultureInfo -> string
Public Function Replace (oldValue As String, newValue As String, ignoreCase As Boolean, culture As CultureInfo) As String
參數
- oldValue
- String
要被取代的字串。
- newValue
- String
用來取代所有出現之 oldValue
的字串。
- ignoreCase
- Boolean
true
會在比較時忽略大小寫;false
則不忽略大小寫。
- culture
- CultureInfo
比較時要使用的文化特性。 如果 culture
是 null
,則會使用目前的文化特性。
傳回
相當於目前字串的字串,只是 oldValue
的所有執行個體都會取代成 newValue
。 如果在目前的執行個體中找不到 oldValue
,則方法傳回未變更的目前執行個體。
例外狀況
oldValue
為 null
。
oldValue
為空字串 ("")。
備註
如果 newValue
為 null
,則會移除 所有出現的 oldValue
。
注意
這個方法不會修改目前實例的值。 相反地,它會傳回新的字串,其中所有出現的 oldValue
都會由 newValue
取代。
此方法會執行搜尋,以使用提供的 culture
和 ignoreCase
區分大小寫來尋找 oldValue
。
因為這個方法會傳回修改的字串,所以您可以將方法的後續呼叫 Replace 鏈結在一起,以對原始字串執行多個取代。 方法呼叫是從左至右執行。 下列範例提供說明。
string s = "aaa";
Console.WriteLine($"The initial string: '{s}'");
s = s.Replace("a", "b").Replace("b", "c").Replace("c", "d");
Console.WriteLine($"The final string: '{s}'");
// The example displays the following output:
// The initial string: 'aaa'
// The final string: 'ddd'
let s = "aaa"
printfn $"The initial string: '{s}'"
let s2 = s.Replace("a", "b").Replace("b", "c").Replace("c", "d")
printfn $"The final string: '{s2}'"
// The example displays the following output:
// The initial string: 'aaa'
// The final string: 'ddd'
Module Example
Public Sub Main()
Dim s As String = "aaa"
Console.WriteLine("The initial string: '{0}'", s)
s = s.Replace("a", "b").Replace("b", "c").Replace("c", "d")
Console.WriteLine("The final string: '{0}'", s)
End Sub
End Module
' The example displays the following output:
' The initial string: 'aaa'
' The final string: 'ddd'