Feeds
답변 있음
How to count number of words in a string
function [wordcount] = wordCount(strtxt, n) wordcount=0; y=1; for x=1:length(strtxt) space=strfind(strtxt, ' '); period=str...
How to count number of words in a string
function [wordcount] = wordCount(strtxt, n) wordcount=0; y=1; for x=1:length(strtxt) space=strfind(strtxt, ' '); period=str...
3년 초과 전 | 0
