RosettaCodeData/Task/String-interpolation--included-/AWK/string-interpolation--included-.awk

7 lines
91 B
Awk
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
#!/usr/bin/awk -f
BEGIN {
2014-01-17 05:32:22 +00:00
str="Mary had a # lamb."
gsub(/#/, "little", str)
print str
2013-10-27 22:24:23 +00:00
}