home *** CD-ROM | disk | FTP | other *** search
-
-
-
- Listing 5
-
- FINDING SENTENCE PARTS
-
-
- action( Command, Action) :-
- string_search( $ $, Command, Pos),
- substring( Command, 0, Pos, Action).
-
- object( Command, Object) :-
- string_search( $ $, Command, Pos),
- Pos1 is Pos+1,
- string_length( Command, L),
- O_lnth is L - Pos1,
- substring( Command, Pos1, O_lnth, Object ).
-
- ---------------- end of listing -----------------------------------