Replacing string by start of this string
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello All,
would you be so kind, could you advise me, how can i create condition with 'if', when i need replace all columns start with 'something-some string' by other string. For example, I have CPU type:'AMD Opteron 852 Single Core' and I need to replace it by only 'AMD Opteron'....:) Thank you for your help in advance...:)
댓글 수: 0
채택된 답변
per isakson
2016년 1월 30일
Hint:
cac = {'AMD','INTEL','ZILOG'
'ZILOG','AMD','INTEL' };
cac = regexprep( cac, '^Z.+$', 'Z80' )
outputs
cac =
'AMD' 'INTEL' 'Z80'
'Z80' 'AMD' 'INTEL'
All strings starting with "Z" are replaced by "Z80"
댓글 수: 7
per isakson
2016년 1월 30일
편집: per isakson
2016년 1월 30일
- "start with 'something-some string'"   Why "start", your column contains the full names - or what did I miss ?
- Where do you have the "more simple name" ?
- Where do you want to put the new column ?
- I need more context to help.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!