Skip to content

Instantly share code, notes, and snippets.

@yamatetsu0111
Last active November 27, 2020 12:25
Show Gist options
  • Save yamatetsu0111/ef41431687cf28be14586ac4acd4c3be to your computer and use it in GitHub Desktop.
Save yamatetsu0111/ef41431687cf28be14586ac4acd4c3be to your computer and use it in GitHub Desktop.
VBAで所定の文字列を置換する例
Sub 文字列を置換する()
Dim S As String
S = replace("ぽんぽん", "ん", "い")
Debug.Print (S)
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment