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

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -