エクセル VBA 入門 Replace

Replace関数
Replace(文字列,置き換え指定文字,置き換え文字)

サンプルソース
————————————————
Option Explicit
Sub start()
Dim hello As String
hello = “hello”

Range(“A1”) = Replace(hello, “llo”, “eee”)

End Sub
————————————————

実行結果
heeee



シェアする

  • このエントリーをはてなブックマークに追加

フォローする

Translate »