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.
次のような形式のデータがあります
int,int,'string',int,'string'
すべての文字列は '' で囲まれています。私の問題は、一部の文字列にコンマが含まれていることです。'' 内で string.split() が分割されないようにするにはどうすればよいですか?
自分でデータを作成している場合は、分割時に区切り文字として使用する別の区切り文字を使用できます。
または、カンマを区切り文字として通常どおり分割を使用してから、配列を調べて、文字列エントリごとに見つかった引用符の数を数え、配列の順序で互いに流れる単一引用符を含む要素を再結合することもできます。