필터 지우기
필터 지우기

Need to find rows with specific strings

조회 수: 4 (최근 30일)
Charles
Charles 2024년 1월 18일
편집: Dyuman Joshi 2024년 1월 22일
I am pulling data in from an excel file and need to check which rows contain a specific string of text
data =7150x1 string
I need to know which rows contain 'xyz'
strfind() returns Search term must be a text or pattern scalar
Contains returns just a 0
  댓글 수: 2
Image Analyst
Image Analyst 2024년 1월 18일
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
Dyuman Joshi
Dyuman Joshi 2024년 1월 20일
편집: Dyuman Joshi 2024년 1월 22일
As mentioned, unless we have the file to test what happens, it is difficult to suggest anything.
Please share the file you are working with. Use the paperclip button to attach.
Edit -
"Contains returns just a 0 "
@Charles, Could you elaborate on this? Does it return just a 0? Or all 7150 values are 0?

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

답변 (1개)

Walter Roberson
Walter Roberson 2024년 1월 20일
편집: Walter Roberson 2024년 1월 20일
mask = contains(data, 'what you are looking for');
selected_data = data(mask);

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by