I'd like to read a plain text file and apply a predicate to each line (the predicates contain write which does the output). How would I do that?
| ||||
|
feedback
|
|
In SWI-Prolog, the cleanest solution is to write a DCG that describes what a "line" is, then call a predicate for each line. Use library(pio) to apply the DCG to a file. | |||
|
feedback
|
|
You can use Example: readFile.pl
myFile.txt
Thus by invoking
Just configure I assume that this principle can be applied to answer your question. Good luck. | |||
|
feedback
|