how to remove certain characters from a string in a file

4 ビュー (過去 30 日間)
Sharen H
Sharen H 2012 年 12 月 20 日
how to remove certain characters from a string based on some condition ie i have a text in a file '32/4/5' i want to retain only 32 and delete rest .my condition is if a '/' is identified then rest characters should be deleted .

採用された回答

Kye Taylor
Kye Taylor 2012 年 12 月 20 日
編集済み: Kye Taylor 2012 年 12 月 20 日
Similar to @Srinivas, you could try
str = '32/4/5';
str = regexprep(str,'/.*','');

その他の回答 (1 件)

Srinivas
Srinivas 2012 年 12 月 20 日
one way
mystr = '32/4/5'
loc = strfind(mystr,'/')
mystr(loc(1):end) =[]

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by