compute/data-munging.md
... ...
@@ -17,7 +17,7 @@ Search Oracle lobs for strings:
17 17
`select whatever from atable where (dbms_lob.instr(lob_column,utl_raw.cast_to_raw('text_to_look_for')) > 0)`
18 18
19 19
FPAT dirty quoted CSV awk:
20
-``BEGIN {
20
+```BEGIN {
21 21
FPAT = "([^,]+)|(\"[^\"]+\")"
22 22
}```
23 23
(doesn't handle newlines in quotes or escaped quotes though)
... ...
\ No newline at end of file