\{student "7+9"\} with "7+9"
there are multiple instances in the file of \{student * \} and i want
to search and replace everything found with what the regexp wildcard
represents. I have tried this
s/\(\\{student\) \(*\) \(\\}\)/\2/g
to no avail,
Zak
Does
s/\\\{student \([^\]*\)\\\}/\1/g
work for your file?
Bye, Andreas