strings operations, how long is string, changing specific strings

조회 수: 1 (최근 30일)
Lukasz Jarod
Lukasz Jarod 2015년 1월 11일
편집: Stephen23 2015년 1월 11일
I have a variable "F" where i have 6-7 charcters , now my questions are:
  • 1 how i can cheack how long is this string?
  • 2 now if it have 7 characters then i want to:
  • for characters in position 1-3 if charcter=0 chacnge it into O , and for position 3-7 if charcter=O change it into 0,
  • how can i do that?

채택된 답변

Stephen23
Stephen23 2015년 1월 11일
편집: Stephen23 2015년 1월 11일
Try this:
F = '000OOOO';
if numel(F)==7
F(1:3) = strrep(F(1:3),'0','O');
F(4:7) = strrep(F(4:7),'O','0');
end
I assumed that you meant your second range to start from 4.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Stateflow에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by