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)$ 

Comments

Popular posts from this blog

node.js - StackOverflow API not returning JSON -

python - Subclassed QStyledItemDelegate ignores Stylesheet -

php - Laravel 4.1 to Heroku: SQLSTATE[HY000] [2002] No such file or directory -