I have a list of strings like this:
purpcl ("purpose clause modifier"),
quantmod ("quantier modifier"),
rcmod ("relative clause modifier"),
Is it possible to make them like this:
PURPCL ("purpose clause modifier"),
QUANTMOD ("quantier modifier"),
RCMOD ("relative clause modifier"),
It is possible with some tools, such as
sed:But you should definitely not use regular expressions for this kind of processing.