フィルターのクリア

Replace '+-" with '-' in a csv file

11 ビュー (過去 30 日間)
MD REZWANUR RAHMAN
MD REZWANUR RAHMAN 2021 年 6 月 28 日
回答済み: Chunru 2021 年 6 月 28 日
I have some data file in .csv format. In the data there are complex values like 3+-3i, but I want to replace all of this '+-' with '-'.

回答 (1 件)

Chunru
Chunru 2021 年 6 月 28 日
% Read data
fid = fopen('yourfile.csv');
s = fscanf(fid, '%c', [1 inf]); % read all text from file
fclose(fid);
% Replace string
s = strrep(s, '+-', '-');
% Save data
fid = fopen('newfile.csv');
s = fprintf(fid, '%c', s); % read all text from file
fclose(fid);

カテゴリ

Help Center および File ExchangeData Import and Export についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by