Replacing characters in a string
이전 댓글 표시
I want to replace characters in a string using loops and if statements. For example if there is a Y in the string, I want to change it to a J. If there is an M in the string I want to change it to a Q.
댓글 수: 2
Ameer Hamza
2020년 4월 9일
Why for loop? Why not some built-in function. This seems like a homework question. Can you show us the code you already tried?
Patrick Crosby
2020년 4월 9일
답변 (1개)
One example(use regexprep):
s="Yao Ming";
regexprep(s,{'Y','M'},{'J','Q'})
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!