필터 지우기
필터 지우기

How to select only ADJECTIVES from a list of strings?

조회 수: 2 (최근 30일)
Salad Box
Salad Box 2020년 9월 10일
댓글: Salad Box 2020년 9월 10일
Hi
I have a list of words in the string format. See below
I would like to only select adjectives from this list.
How to achieve it? Please help.:)
  댓글 수: 4
Salad Box
Salad Box 2020년 9월 10일
I'm not sure whether you understand my question, or did I not make my question clear? Let me know please.
Matt J
Matt J 2020년 9월 10일
편집: Matt J 2020년 9월 10일
Do you have a list of adjectives to cross check against? And what if a word is both an adjective and a noun, like "orange"?

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

답변 (1개)

Matt J
Matt J 2020년 9월 10일
Do you have a list of adjectives to cross check against? And what if a word is both an adjective and a noun, like "orange"? If you just want to know if a word belongs to another list containing exclusively adjectives, you can use ismember, e.g.,
>> adjectives={'red','three','passive','candid'};
>> s=["red","person","woman","man","camera","tv","three"]
>> ismember(s,adjectives)
ans =
1×7 logical array
1 0 0 0 0 0 1
  댓글 수: 1
Salad Box
Salad Box 2020년 9월 10일
No I don't have a list of adjectives to cross check against.
Without this, how to do it?
I'm thinking of using part-of-speech function. Then how to select those words tagged 'adjectives' as part-of-speech?
For instance,
if the 2nd, the 4th, and the 10th word in a list of words are tagged as 'adjectives' as part-of-speech, how to know the indices of those words are 2, 4 and 10?

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by