Add draft for a post about cutting CSV lines at the 10th column
This commit is contained in:
parent
2ed1e51e64
commit
3d452d5640
5
_drafts/cut-at-ten.md
Normal file
5
_drafts/cut-at-ten.md
Normal 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)))
|
||||
```
|
Loading…
Reference in New Issue
Block a user