how do i split every digit of a string

5 vues (au cours des 30 derniers jours)
Sharen H
Sharen H le 24 Nov 2012
i have a string as '1111' how to split its digit as
num(1)=1
num(2)=1
num(3)=1
num(4)=1
I will always have numbers only in the string
thanks in advance

Réponse acceptée

Matt Fig
Matt Fig le 24 Nov 2012
Modifié(e) : Matt Fig le 24 Nov 2012
S = '1234'; % Say this is your string....
num = S - '0';
num(1)
num(2)
num(3)

Plus de réponses (1)

Walter Roberson
Walter Roberson le 24 Nov 2012
num = '1111'
then
num(1) would be '1'
If you need num(1) to be numeric 1 rather than the character 1, then
num = '1111' - '0'

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by