What is the proper way to parse a buffer to store its contents and reuse it?
Let's say I got this buffer:
always|five|words|by|line not|always|the|same|words sometimes|no|lines|at|all but|only|five|no|more/less
What would be the best approach to building a list of characters found in strings (and an error is good if they are not found)?
There is a buffer, I can visit it, get its contents this way
(message "Buffer content : %s" (buffer-substring (point-min) (point-max)))
after I killed him cleanly, but for some reason I canโt build an object (a list of โlinesโ of lists of โwordsโ) that would allow me to do this:
(list-length lines) ==> 4 (car (nthcdr 3 lines)) ==> sometimes
Can a soul mate point me to the light? Thank you for your patience, Lisp Elders.
yphil source share