[特定の文字列を置換する]

文字列中の、指定された文字列を、指定された文字列で置き換えます。

【ソースコード】
[tips0029.vbs]
Option Explicit

Dim strValue    ' 変換する文字列
Dim strBefore   ' 変換前の文字列
Dim strAfter    ' 変換後の文字列

strValue = "こんにちは"
strBefore = "にち"
strAfter = "ばん"
WScript.Echo "「" & strValue & "」の" & _
    "「" & strBefore & "」を「" & strAfter & "」に置換すると" & _
    "「" & Replace(strValue, strBefore, strAfter) & "」になります。"

【実行結果】
C:\> cscript //NoLogo tips0029.vbs
「こんにちは」の「にち」を「ばん」に置換すると「こんばんは」になります。