필터 지우기
필터 지우기

convert text like '(18)' to number

조회 수: 1 (최근 30일)
Stewart Smith
Stewart Smith 2019년 11월 8일
답변: Walter Roberson 2019년 11월 8일
is there simple way to extract this text and convert to number?

답변 (1개)

Walter Roberson
Walter Roberson 2019년 11월 8일
S = '(18)';
value = sscanf(S, '(%f' )
You can get more complicated, like,
S = '(18,-3.8)';
value = sscanf(S, '(%f,%f)');

카테고리

Help CenterFile Exchange에서 Text Data Preparation에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by