Add draft for a post about cutting CSV lines at the 10th column

This commit is contained in:
2019-11-05 06:17:41 +01:00
parent 2ed1e51e64
commit 3d452d5640

5
_drafts/cut-at-ten.md Normal file
View File

@@ -0,0 +1,5 @@
``` lisp
(defun cut-at-ten ()
(while (re-search-forward "," (save-excursion (end-of-line) (point)) t 10)
(newline-and-indent)))
```