1
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 1 year has passed since last update.

[PowerShell] CSVファイルからリストと一致する行を抽出…できなかった話

Last updated at Posted at 2022-01-12

CSVファイルからリスト(こちらも別のCSVファイル)と一致する行を抽出したい、
ということがあったので、LIGLOGさんのブログを参考にスクリプトを作成しました。

PowerShellでCSVファイルからリストに一致する行を抽出してソートする

が、うまく動かない…
「・ソ」とだけ出力されました(笑)

なんでだろう、と思って変数の中身などいろいろみていたら、
リストとするCSVをGet-Contentした「$SearchList」のすべての値に ダブルクォーテーションがついていることを発見!!

比較時の**「$SearchList」を「$SearchList.Replace('"', '')」にすることで解決しました**とさ。


今回うまくいかなかったのは、リストに使ったCSVファイルの値のすべてにダブルクォーテーションがついていたからですが、
このもとにしたファイル、Export-Csvでとってきたやつなんですよね。
Export-Csvすると、すべての値にダブルクォーテーションが勝手についてくるとのこと。
だからかぁ~

このあたりの話は、@tak458さんの下記記事が非常に参考になりそうです。

解決してよかったー。それでは。

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