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

Popular posts from this blog

c++ - error: use of deleted function -

delphi - ESC/P programming! -

c# - how to write client side events functions for the combobox items -