[VB.NET]Replaceメソッドで文字を置換する
書式
Public Function Replace (oldChar As Char, newChar As Char) As String
oldChar のすべてのインスタンスが newChar で置き換えられることを除いて、このインスタンスと等価な文字列。
パラメーター
oldChar 置換する Unicode 文字
newChar 出現するすべての oldChar を置換する Unicode 文字
使用例
Module Module1 Public Sub Main() Dim str As String = "this is a test data" Console.WriteLine(str) '文字単位での置換 Console.WriteLine(str.Replace("t"c, "K"c)) Console.ReadKey() End Sub End Module
実行結果
this is a test data Khis is a KesK daKa