This may sound strange, but it is used in a parser, I want to be able to parse something of the form

foo[bar]

So this would be represented in a list as:

[foo, [, bar, [] Maybe such a word would be written in DCG as:

x --> id [[] arg []]

The problem is that the square bracket is a reserved character, so how can I represent this in prolog?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Can you not treat your square brackets as atoms (i.e., '[' and ']'), along with everything else?

How about, for example:

label1(T) --> id(X), label2(Y), {T =.. [X, Y]}.
label2(Y) --> ['['], innerexp(Y), [']'].
id(X) --> [X].
innerexp(Y) --> [Y].

Execution:

?- phrase(label1(T), [foo, '[', bar, ']'], Rem).
T = foo(bar),
Rem = [].
link|improve this answer
how would I read in square brackets from a file and put them in single commas? – Tom Nov 16 '10 at 1:42
that works a trick, thanks mate! – Tom Nov 16 '10 at 1:54
feedback

Does "[" (in quotes) do the trick?

link|improve this answer
No, it doesn't. – Tom Nov 8 '10 at 1:51
Ah well. I can't think of anything else, sorry. – Cameron Nov 8 '10 at 2:25
feedback

Your Answer

 
or
required, but never shown

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