regexp to extract the last underscore and the following letter (last letter) from words

19 ビュー (過去 30 日間)
I want to use regexp in order to extract only the last underscore and the last letter from the words below.
But if I have the words 'apple_c' and 'apple_man_man_h'
and I use regexp(words,'\_\w','split'),
then I get as a result 'apple' for both words, but it is wrong for me, because I want to extract onlythe last underscore and thr last letter, as I said.
The desired result for me is 'apple' and ''apple_man_man'.
How should i modify the command to achieve this?
Thank you

採用された回答

Mathieu NOE
Mathieu NOE 2021 年 11 月 15 日
hello
I recognize I am not the regexp expert here , so I would suggest this alternative :
ind = findstr(words,'_');
word_out = words(1:ind(end)-1)
  3 件のコメント
Stephen23
Stephen23 2021 年 11 月 15 日
The behavior if there is no underscore might also be relevant:
words = 'apple';
ind = findstr(words,'_')
ind = []
word_out = words(1:ind(end)-1)
Array indices must be positive integers or logical values.
What is the desired output in this case?
Ioannis Vourvachakis
Ioannis Vourvachakis 2021 年 11 月 15 日
Ηello Stephen, we talk about the case that all the words we study now contain an underscose and after the underscore follows the last letter of the word.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by