简体   繁体   中英

How can i extract last shortest string using regex in java

how can i extract bold range string in below

string :

  1. hello world blah -d blah vlaah -n blah vlahh
  2. hello world blah -n blah vlahh -d blah vlaah
  3. hello world blah -d blaaah

I tried. -[dn] .*$ but it found longest match string like below

  1. hello world blah -d blah vlaah -n blah vlahh

I want to extract shortest match string . thanks in advance

You can use a negative lookahead to avoid matching another -d/-n in the match:

-[dn] (?!.*?-[dn]).*$

RegEx Demo

Could throw a greedy .* before to eat up:

^.*(-[dn] .*)$

And grab matches of the first capture group . See test at regex101

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM