필터 지우기
필터 지우기

String parsing and array of strings

조회 수: 1 (최근 30일)
skyimager
skyimager 2012년 5월 30일
The input data format is target$345$678$78$780$target. Noe the data format is constant but the number set is continuously changing. The first number set denotes temperature, the next pressure and so on. I want to store the first number set in an array called Temp(100)--Storing 100 sets of value, next number set in an array called Pressure(100). So parsing is required..each number set is to be stored in a different set of array.

채택된 답변

TAB
TAB 2012년 5월 30일
Inpt = 'target$345$678$78$780$target';
Str = strrep(Inpt,'target','');
Dcell = textscan(str(2:end),'%f','delimiter','$');
Temp(1) = Dcell{1}(1);
Pressure(1) = Dcell{1}(2);
.....and same for other values and other set of input string

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by