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 -

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

visual studio - How to generate shader debug information (pdb) in VS2012 -