s/find the Match statement/find the MATCH statement/g
The transform command could do the lowercase-to-uppercase conversion,
but it applies the conversion to the entire line. The hold space
makes this task possible because we use it to store a copy of the
input line while we isolate and convert the statement name in the
pattern space. Look at the script first:
# capitalize statement names
/the .* statement/{
h
s/.*the \(.*\) statement.*/\1/
y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/
G
s/\(.*\)\n\(.*the \).*\( statement.*\)/\2\1\3/
}
The address limits the procedure to lines that match the .*
statement. Let's look at what each command
does: