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.
txt ファイルの内容: 2;123687452321215454 最初の文字「2」を取得したい
私は試した :
s = fileread(filepath); [token, remain] = strtok(s) token = this returns : token = 2;123687452321215454 remain =
どうすれば最初の「2」だけを取得できますか?
の前にあるものを取得したい場合は;、次を使用します。
;
[token, remain] = strtok(s,';')
の前にある場合、これにより複数の文字が得られます;。最初の文字だけが必要な場合は、token(1). ;使用前の最後の文字が必要な場合はtoken(end).
token(1)
token(end)