regex - Regular expression in eclipse -
new here. have 4300 instances of:
<c:out value="${crane_error.aac}" />
i want replace
${crane_error.aac}
not sure how format in find/replace box in eclipse
thanx
search expression should this:
<c:out value="\$\{crane_error.aac\}" />
replace expression should this:
\$\{crane_error.aac\}
edit: match variable can use following expression:
<c:out value="(\$\{[^\}]+\})" />
and replace with:
$1
Comments
Post a Comment