How do I remove leading characters from a string?
Ältere Kommentare anzeigen
I read one ascii file. and created this dummy mat file (attached ).
To make simple matrix out of it i need to split the string
i used this code (below) but it coudnt split the first string which is a date and time with some leading number since there is no space in between. There is this number before the date and time, i want remove those numbers so can use datenum on that string !
for i = 1:len_data
segments = regexp(dummy{1,1}{i,1},' ', 'split');
end
Akzeptierte Antwort
Weitere Antworten (1)
Ankit
am 18 Sep. 2019
Hello Pruth,
a = extractBetween(dummy{1, 1}, 10,20)
where 10 is the start position and 20 is the end position.
Cheers
Ankit
3 Kommentare
pruth
am 18 Sep. 2019
Ankit
am 18 Sep. 2019
hello pruth,
cell data can be converted to double using str2double. But you can't use it to convert date, it will return a NaN value.
thanks
Ankit
Walter Roberson
am 19 Sep. 2019
However, datetime() is happy to process cell array of character vectors ;-)
Also, in newer releases, duration() is happy to process cell array of character vectors. This was not possible in older releases.
Kategorien
Mehr zu Dates and Time finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!