3
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?

More than 5 years have passed since last update.

JavaScriptで改行付き文字列の先頭行だけ削除する

Posted at

先頭行に謎の文字列の入ったCSVファイルに出会った

以下のようなCSVファイルに出会いました。(実際の業務データではありません)

hogehoge
name,value,count
りんご,100,2
バナナ,150,4

先頭行に、CSV形式ではない余計な文字列があって、それを削除してからCSV解析処理をしたいというシーンです。
改行は LF という前提です。

改行付き文字列の先頭行だけを消したい。

意外と記事が見当たらなかったので、忘れない内に書きます。

indexOfsubstr の組み合わせでできました。

// 改行付き文字列を定義(実際にはファイル読み込み)
const inputString = `hogehoge
name,value,count
りんご,100,2
バナナ,150,4`;

// 何文字目に最初の改行があるか?
const firstRowEndPos = inputString.indexOf('\n', 0);

// 最初の改行の次の位置から文字列を抽出
const outputString = inputString.substr(firstRowEndPos + 1);

// 表示
console.log(outputString);

さいごに

そこそこ簡単にできました。
CR も考慮すると、もっと複雑になるかもしれませんね。

3
0
2

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
3
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?