Replacing characters in a string

37 ビュー (過去 30 日間)
Patrick Crosby
Patrick Crosby 2020 年 4 月 9 日
コメント済み: Patrick Crosby 2020 年 4 月 9 日
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
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
Patrick Crosby 2020 年 4 月 9 日
The way I was thinking of it would be using loops-- is there an easier way? I am unfamiliar with a built-in function for this

サインインしてコメントする。

回答 (1 件)

Birdman
Birdman 2020 年 4 月 9 日
編集済み: Birdman 2020 年 4 月 9 日
One example(use regexprep):
s="Yao Ming";
regexprep(s,{'Y','M'},{'J','Q'})

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by