DOBON.NETお気楽掲示板

No1601 の記事


■1601 / )  Stringクラス、SplitメソッドのTrim
□投稿者/ たこ -(2021/08/24(Tue) 12:33:28)
  • アイコンVB.NETで…

    <やりたい事>
    Dim Str as String = " 1,Test1 ,2, Test2"
    …の様な空白入りのカンマ区切りの文字を…



    Dim StrCollection As String()
    StrCollection(0) = "1"
    StrCollection(1) = "Test1"
    StrCollection(2) = "2"
    StrCollection(3) = "Test2"
    それぞれ空白無しのカンマ区切り文字列にしたい場合…

    Dim StrCollection As String() = Str.Split(",").Trim
    …と書いたらエラーが出ます…汗

    Str.Split(",")でそれぞれ分割された文字列になっているのだから、
    それをTrimする…と言う感じで使えても良い気がしますが…苦笑


        Dim Str As String = " 1,Test1 ,2, Test2"
        Dim StrCollection As String() = Str.Split(",")
        For x As Integer = 0 To StrCollection.Count - 1
          StrCollection(x) = StrCollection(x).Trim
        Next
    …と言う様な書き方しか無いのでしょうか…
    何か実現出来る良い書き方があればご教授下さい。
    よろしくお願い致します。
返信 削除キー/


Pass/


- Child Tree -