How can I detect end of lines in a output string of a dos command?

6 ビュー (過去 30 日間)
Andy
Andy 2014 年 1 月 20 日
コメント済み: Andy 2014 年 1 月 20 日
I execute e.g.:
>> [status, cmdout] = dos(['tracert www.google.com']);
>> cmdout
When I copy the output of the Matlab command window and paste it into Notepad++, I see a CR and LF at the end of each line. Finding these with strfind does not return what I expect:
>> strfind(cmdout,'\r\f')
ans =
[]
How can I divide the cmdout string into individual lines?

採用された回答

Friedrich
Friedrich 2014 年 1 月 20 日
編集済み: Friedrich 2014 年 1 月 20 日
Hi,
try
lines = regexp(cmdout,'\n','split')
Or
lines = textscan(cmdout,'%s','delimiter','\n')
However you will get a few empty lines because of the way the cmdout is generated. Sometimes you have two newline indicators before an actual line. But this should help get started.
  1 件のコメント
Andy
Andy 2014 年 1 月 20 日
This works fine for my purpose. Thanks a lot!
As the output to dos commands differs structurally from computer to computer and also depending on the result, having the answer by line really helps for searching the required information.

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

その他の回答 (1 件)

Amit
Amit 2014 年 1 月 20 日
編集済み: Amit 2014 年 1 月 20 日
CR and FR are carriage return and line feed. Most of the notepad type application do not show it.
The reason strfind does not find it because its not there. Have you tried pasting it in a different word processor like windows native wordpad or notepad?

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by