Tagged Questions
0
votes
2answers
153 views
Split string in items
I have a string
'a, b, c'
What is the easiest way to split this into items?
[a,b,c]
3
votes
3answers
113 views
Removing whitespace from strings in Prolog
I wrote parser in Prolog. I haven't finished yet. It is a part of code. The next step is killing all whitespace in string.
parse(Source, Tree) :- kill_whitespace(Source, CleanInput), % remove ...
1
vote
2answers
297 views
how to compare strings in prolog
I want to write a program in prolog that compares two strings or string lists. I want achieve the following:
if StringList A == StringList B
{
do this
}
else
do something else
How ...
2
votes
1answer
303 views
Prolog Words Function
I'm a beginner with Prolog and there's a piece of code I've been trying to implement.
Essentially, you enter a string where the words inside the string are separated by spaces or exclamation marks or ...
0
votes
1answer
126 views
Prolog and php encoding
I'm creating a interface between swi-prolog and php. The php writes commands it wants prolog to run on a file and then does a system call so prolog runs the file. The problem is that when there's ...
0
votes
2answers
270 views
Prolog convert strings to pair list
I'm learning Prolog and I need idea how to convert a list of strings:
['f(a,45)', 'f(b,13)', 'f(c,12)']
into a list of pairs that looks like this:
[[45,'a'],[13,'b'],[12,'c']]
2
votes
2answers
72 views
How to know if an atom is starting with a pattern?
For example, if I got the following predicates :
father('jim', 'Boby')
father('rob', 'bob')
and I would like to know who got father with is name starting with 'bo' ?
3
votes
1answer
116 views
Ordering Strings in Prolog
I want to know how can I compare two strings that would tell me if one string is greater that the other one, or not.
I don't want equality/inequality. I want to have the good old alphanumeric ...
0
votes
1answer
228 views
Amzi Prolog Tokenize
I would want to read a file and store the words in every line as a list. This is my code:
main :-
open('sample.txt', read, Str),
read_file(Str,Lines),
close(Str),
write(Lines), nl.
...
0
votes
2answers
636 views
How to convert a string read from input to a list of lists in prolog
I'm trying to write a program that converts from Mayan to Arabic numerals and vice versa in prolog. Although I'm still running into some trouble I've managed to get it mostly working. I'm just ...
2
votes
2answers
199 views
hangman in prolog
I am a beginner to prolog. How can I convert letters into * (asterisk)?
I know that it is a character codes in prolog to represent strings. The problem is if it is a letter, convert it to " *", if it ...
0
votes
1answer
251 views
Prolog List of Constants to String
i have a list in input: [asd,qweqwe,fsdf,lkasd]
As un can see from the code i want connect each constant of the list to output a single variable list.
i m using yap prolog, i consult this code and i ...
-1
votes
2answers
512 views
prolog term to string
i have a prolog list like this:
[p(X,Y,Z),r(H,G,K)]
and i want convert it
into this:
'p(X,Y,Z)r(H,G,K)'
it is just a list of predicate, that should be transformed into a string.
Do you have ...
0
votes
3answers
3k views
Prolog: how to convert string to integer?
So as the title says - how do you convert a string into an integer?
the idea is something like this:
convert(String,Integer).
examples:
convert('1',1).
convert('33',33).
I'm using swi prolog
1
vote
3answers
137 views
Prolog returns a list instead of several possible strings
answer("Yes").
answer("No").
answer("Variable = value").
receive(A) :- answer(A).
2 ?- answer(A).
A = [89, 101, 115]
Yes
I want A = "Yes" etc. What am I doing wrong?
0
votes
3answers
3k views
Prolog list to string
I have a list like [ apple, orange]
I want to convert this list to string like "apple,orange" in prolog
Do you have any idea?
3
votes
1answer
642 views
Prolog : Remove extra spaces in a stream of characters
Total newb to Prolog. This one is frustrating me a bit. My 'solution' below is me trying to make Prolog procedural...
This will remove spaces or insert a space after a comma if needed, that is, until ...
0
votes
1answer
896 views
Can i convert from a list of chars to a string or term in Prolog
i use
read_line_to_codes(Stream,Line)
to read a line from a file .. first
is there any way to read a line and assign it to a term in prolog ?? if not i managed to read a line and put it in this ...
1
vote
1answer
231 views
0
votes
3answers
572 views
How to manipulate strings in prolog?
I have this fact in my base
fact("name","surname","123").
if i simply write this question:
fact(X,_,_). For X I get some unidentified output.
How can I retrieve any of this values, or how to get this ...
0
votes
1answer
847 views
Manipulate strings in prolog
I have a list of stirings I need to manipulate and write out.
I get the strings the usual way with H|Tail recursion.
H will look something like "statement(foo, foo2, foo3, foo4, foo5)"
I want to be ...
1
vote
3answers
564 views
How can I find the index of the first “element” in my string using Java?
I'm working on writing a simple Prolog interpreter in Java.
How can I find the last character index of the first element either the head element or the tail element of a string in "List Syntax"?
...
2
votes
1answer
633 views
Normalizing space characters in Prolog atoms
What is the best way to normalize whitespace characters (space, newline, tab) in a Prolog atom, e.g. in SWI-Prolog.
I.e. I would like to have a rule:
normalize_space_in_atom(+Atom1, -Atom2)
such ...