Group string based on charachter

Hi all If i have a string lets say a='1/23s' is there a way to take 1 and 23s seperately on some other variables so i can then extract only the numbers from them.

 Réponse acceptée

Chandra Kurniawan
Chandra Kurniawan le 7 Déc 2011

2 votes

a='1/23s';
i = findstr(a,'/')
b = a(1:i-1)
c = a(i+1:end)

Plus de réponses (1)

Andrei Bobrov
Andrei Bobrov le 7 Déc 2011

1 vote

str2double(regexp(a,'\d+','match'))
and
regexp(a,'/','split')

Catégories

En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by