compute/data-munging.md
... ...
@@ -17,7 +17,9 @@ 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
+```
21
+BEGIN {
21 22
FPAT = "([^,]+)|(\"[^\"]+\")"
22
-}```
23
+}
24
+```
23 25
(doesn't handle newlines in quotes or escaped quotes though)
... ...
\ No newline at end of file