Created
September 28, 2017 04:11
-
-
Save tamago324/e9faf7bb77663b9ef7fb546bfbb411b9 to your computer and use it in GitHub Desktop.
String.Formatを使って、文字列に当てはめる
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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