Filter löschen
Filter löschen

Separating numbers and characters from input

6 Ansichten (letzte 30 Tage)
Valeria Chacon
Valeria Chacon am 25 Okt. 2016
Kommentiert: Andrei Bobrov am 26 Okt. 2016
If a user inputs a random amount of characters For example: str=input(prompt,'s'); and they input: 123wd57ab934bd3 how can I separate the numbers and the characters? Thank you!

Antworten (1)

Andrei Bobrov
Andrei Bobrov am 25 Okt. 2016
str = '123wd57ab934bd3';
z = regexp(str,'(\d*)([a-z]*)','tokens');
out = [z{:}];
out = out(~cellfun(@isempty,out));
  3 Kommentare
Valeria Chacon
Valeria Chacon am 25 Okt. 2016
is there any way that I could pull out the numbers? maybe even one by one? so instead of separating I get only the numbers.
Andrei Bobrov
Andrei Bobrov am 26 Okt. 2016
str = '123wd57ab934bd3';
z = str2double(regexp(str,'\d*','match'));

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by