How to use "contains" statement to detect a string without ambiguity?

조회 수: 5 (최근 30일)
Giuseppe
Giuseppe 2022년 6월 22일
댓글: Steven Lord 2022년 6월 22일
Hi to everyone,
I have a table with some data (attached file table.mat ). In the second column named " Sol_inters " I have three types of data (strings):
A
B
A & B
I want to filter the original table in order to create three filtered tables (tab_A, tab_B, tab_AB) in which their second column contains respectively "A", "B" and "A & B". So, for each table I want to mantain only rows that satisfy the condition on second column.
I 'm trying to use the "contains" statement but it fails with cases "Sol_filtered_A " and "Sol_filtered_B" becasue it maintans always also the case "A & B".
Here is my code:
% Import general solution
Sol_data = readtable('All_database_solution_test.csv','VariableNamingRule','preserve');
% Filter solutions: select if the solution occurs in point A, B or both
Sol_A = contains(Sol_data.Sol_inters,'A','IgnoreCase',false);
Sol_B = contains(Sol_data.Sol_inters,'A','IgnoreCase',false);
Sol_AB = contains(Sol_data.Sol_inters,'A & B','IgnoreCase',false);
Sol_filtered_A = Sol_data(Sol_A,:);
Sol_filtered_AB = Sol_data(Sol_AB,:);
Can you help me to solve this issue?

채택된 답변

Stephen23
Stephen23 2022년 6월 22일
편집: Stephen23 2022년 6월 22일
"Can you help me to solve this issue?"
CONTAINS() check if the pattern occurs anywhere inside the string, but this could be a substring. So if you want match only the entire string then you need to use the correct tool: MATCHES() or STRCMPI()
  댓글 수: 2
Giuseppe
Giuseppe 2022년 6월 22일
편집: Giuseppe 2022년 6월 22일
Hi @Stephen23, can you show me an example by using the code in my question?
Can you also tell me what is the difference bewteen two tools you mentioned?
Steven Lord
Steven Lord 2022년 6월 22일
The documentation pages for the matches and strcmpi functions each contain multiple examples showing what each function does.
If you had to use contains (as a requirement of a homework assignment, for instance) remember that contains returns a logical value, one that you can use with the & (and), | (or), and ~ (not) operators.
true & false % false
ans = logical
0
true & ~false % true
ans = logical
1

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by