detect nth character in a string

79 次查看(过去 30 天)
hello all masters,
i have a variable string for example a = 'c13Maya'
how do i detect the 2nd and 3rd characters of the string ?? the result will give 13 as answer..
any suggestion will be appreciated
thank u,
-Maya-

采纳的回答

Dr. Seis
Dr. Seis 2012-1-22
If you want the result to also be a string, then:
b = a(2:3);
If you want the result to be a number, then:
b = str2double(a(2:3));
  4 个评论
Rusmaya Luthfina
Rusmaya Luthfina 2012-1-22
it's just fine with string result.. but anyway, thank u for the information u give me Mr. Roberson, it's very useful.. :D

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 String 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by