フィルターのクリア

Week 9, Assignment 2

4 ビュー (過去 30 日間)
Ajith Thomas
Ajith Thomas 2019 年 8 月 19 日
回答済み: Raheem Ullah 2022 年 8 月 17 日
Write a function called char_counter that counts the number of a certain character in a text file. The function takes two input arguments, fname, a char vector of the filename and character, the char it counts in the file. The function returns charnum, the number of characters found. If the file is not found or character is not a valid char, the function return -1. As an example, consider the following run. The file "simple.txt" contains a single line: "This file should have exactly three a-s...
function charnum=char_counter(fname,a)
fid=fopen(fname,'rt');
if fid<0
charnum=-1;
fprintf('error\n');
return;
end
if ischar('a')==0
return;
end
if fid>0 && ischar(a)
line=fgets(fid);
n=0;
for n=n+count(line,a)
end
charnum=n;
else charnum=-1;
end
if ischar(a)==0
charnum =-1;
elseif charnum==0
charnum=0;
return;
end
fclose(fid);
why second error is coming?
  6 件のコメント
Guillaume
Guillaume 2019 年 8 月 19 日
The code is much better. However,
  • if the file is valid (fid >= 0) but a is not, you quit the function without closing the file
  • double(a) == 32 is exactly the same as a == ' '. The latter is a lot clearer as to the intent.
  • Your for loop doesn't make any sense. By chance, your function will produce the correct result if the input has one line only.
  • Again, testing if something is 0 and then setting it to 0 if it is, doesn't make sense.
my question is which all characters should be eliminated
Why should any of them be eliminated?
Steven Lord
Steven Lord 2019 年 8 月 19 日
Why is the space character not a valid character? Nothing in the text of the assignment that you've posted says it's invalid.
By the way, I agree with Guillaume that a == ' ' is a clearer statement of intent. Calling the isspace function is even clearer, though it may be a little more permissive about what's a space than you want (are tab, line feed, or newline spaces? They are to isspace.)

サインインしてコメントする。

回答 (1 件)

Raheem Ullah
Raheem Ullah 2022 年 8 月 17 日
function charnum=char_counter(fname,character)
fid=fopen(fname,'rt')
n=0
p=ischar(character)
if(fid<0 || p==0)
charnum=-1
return
else
oneline=fgets(fid)
while ischar(oneline)
for ii=1:length(oneline)
if(oneline(ii)==character)
n=n+1
end
end
oneline=fgets(fid)
end
end
charnum=n;
fclose(fid);
end

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by