I need a regex to perform search in eclipse to match all strings that start with ${ and end with } but should not have pageContext between the two. For Example
${requestScope.user}
${sessionScope.user}
should match
but ${pageContext.request} should not
After all efforts I have made this regex (\${) which matches strings starting with ${ but some how doesn't meet my requirement.any help will be appreciated.