eclipse - Regex, match a word that starts with one of a range of letters -
i want match word starts letter h
t
, ends ing
or ed
word learning
. tried
\\s[h-t]\\w+[ing[ed]]\\s
this should work
^[h-t].*(ing|ed)$
i want match word starts letter h
t
, ends ing
or ed
word learning
. tried
\\s[h-t]\\w+[ing[ed]]\\s
this should work
^[h-t].*(ing|ed)$
Comments
Post a Comment