0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

今日のおすすめ関数は、文字列の操作で役立つVB.NETのString.Joinです!

Posted at

今日のおすすめ関数は、文字列の操作で役立つVB.NETのString.Joinです!

String.Join 関数
String.Joinは、配列内のすべての要素を指定された区切り文字で結合し、1つの文字列として返す関数です。配列の要素を連結したいときに非常に便利です。

構文
Dim result As String = String.Join(separator As String, values() As String)
separator: 各要素を区切る文字列(例えば、カンマやスペースなど)。
values(): 結合したい文字列の配列。

使用例
例えば、カンマで区切られたリストを作成する場合:

Dim fruits As String() = {"Apple", "Banana", "Cherry"}
Dim fruitList As String = String.Join(", ", fruits)
Console.WriteLine(fruitList)
このコードを実行すると、以下のような出力が得られます:

Apple, Banana, Cherry

利用シーン
CSV形式の文字列を作成する場合
単語リストを文章としてまとめる場合
配列内のデータを一行に表示したい場合
String.Joinは簡潔で理解しやすく、効率的な文字列連結を可能にするので、ぜひQiitaで紹介してみてください!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?