I want to read a file that will contain names in each line.And I don't know how to do this with SWI Prolog ,I have sufficient knowledge of C/C++ so is there any way to do the same with Prolog. ??

link|improve this question
1  
to open files check this swi-prolog.org/pldoc/…, to actually read the data check mat's answer. there is also this swi-prolog.org/pldoc/… – thanosQR Nov 29 '11 at 15:55
feedback

1 Answer

In my opinion the best way to read from files in SWI Prolog (especially if you want to do something that is not covered by standard predicates such as read/2 which reads Prolog terms from streams) is to first write a DCG (= definite clause grammar) to declaratively specify what you want to describe. You can use the DCG interactively in queries to try it out (i.e., parse and often also generate the strings it describes). Then, use SWI-Prolog's library(pio) to apply the DCG to a file with phrase_from_file/2.

link|improve this answer
See also this closed thread – false Nov 29 '11 at 15:55
Can you give me a sample code for this please. – Faran Rasheed Nov 29 '11 at 16:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.