Inserting one character many times into a string

I have a string with a bunch of words separated by commas
S='Apples,Oranges,January,February,...'
I get a vector with the placement of all the commas with
commas=strfind(s,',');
how do i place a character before every comma in the string, so it will come out like
Snew='Apples2,Oranges2,January2,February2,...'

 채택된 답변

Stephen23
Stephen23 2016년 12월 27일
편집: Stephen23 2016년 12월 27일

0 개 추천

You can simply use strrep:
>> S = 'Apples,Oranges,January,February,...';
>> strrep(S,',','2,')
ans = Apples2,Oranges2,January2,February2,...

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Characters and Strings에 대해 자세히 알아보기

질문:

2016년 12월 27일

편집:

2016년 12월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by