Skip to content

Instantly share code, notes, and snippets.

@tamago324
Created September 28, 2017 04:11
Show Gist options
  • Save tamago324/e9faf7bb77663b9ef7fb546bfbb411b9 to your computer and use it in GitHub Desktop.
Save tamago324/e9faf7bb77663b9ef7fb546bfbb411b9 to your computer and use it in GitHub Desktop.
String.Formatを使って、文字列に当てはめる
Dim x As String, y As String
x = "Hello"
y = "world"
Console.WriteLine(String.Format("{0} {1}", x, y)) ' Hello world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment