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.
mySql データベースから取得したクエリのタブ区切りの CSV を生成する必要があります。MySQL Query Browser を使用してデータを注文 CSV として抽出しています。
通常のカンマ区切りのCSVをタブ区切りに変換する方法を知っている人はいますか。ExcelでもOpen Officeでもそれを行う方法が見つかりません。
マニーありがとう!
ps私はWindows 7マシンで作業しています。
Linux?
sed 's/,/\t/g' commaDelimited > tabDelimited
ウィンドウズ?
メモ帳を開き、Tab キーを押し、タブ スペースを選択してコピーします。メモ帳で CSV を開き、[編集] -> [置換... ,] の最初のボックスに入力し、2 番目のボックスにタブを貼り付けて、すべて置換します。
,