Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VB.NET で分割メソッドを使用するにはどうすればよいですか? 私は試した:
arr.Split(New Char{','})
しかし、それは私にエラーを与えます。正しい構文は何ですか?
arr.Split(New Char() { ","c })
'コメントを開始します。
'
これを試してください: Dim ApplyTo As String = "Test1,Test2" asd = ApplyTo.Split(",") msgbox(asd(0)) 'Prints "Test1" msgbox.WriteLine(asd(1))