How to extract a certain part from a string?

Hi, I have a string variable with 9-digit value (not necessarily integer,could be capitalized-letter),
and I want to transform them into 8-digit value by removing the last digit value.
For example, my input will be some string as
'0036R3879' '0034658A6'
and respectively they should be transformed into
'0036R387' '0034658A'
such that the last digit is removed and the output is still a sting with 8 digit.
I don't know how to operate with string in this case, and the function 'strrep' seems not to work here.
Can someone familiar with string operation help me out?
Thank you!

 채택된 답변

Guillaume
Guillaume 2017년 5월 17일

1 개 추천

Assuming R2016b or later:
extractBefore(yourstringarray, 9)

댓글 수: 3

Star Strider
Star Strider 2017년 5월 18일
According to the documentation, that syntax is new in R2017a.
Guillaume
Guillaume 2017년 5월 18일
Hum, no. My documentation says that it was introduced in R2016b. The behaviour was changed in R2017a to return the same data type as the first input whereas in R2016b, it always returned string arrays.
Wei Feng Hsu
Wei Feng Hsu 2017년 5월 18일
It works! Thank you

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2017년 5월 17일

0 개 추천

Try this:
myStrings = string({'0036R3879'; '0034658A6'; '00300658A6'});
% Print to command window:
t = table(myStrings)
for row = 1 : size(t, 1)
% For every row...
oldString = t.myStrings{row};
t.myStrings{row} = oldString(1:end-1);
end
% Print to command window:
t
Hopefully it's rather self explanatory.

카테고리

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

태그

질문:

2017년 5월 17일

댓글:

2017년 5월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by