Hi everyone,
i’m trying to put a paren sequence in brackets with a wild card in between, like this :
u: (red * [car (little truck)])
This rule matches “red car” but doesn’t match “red little truck”.
If I put paren around “car”, like this :
u: (red * [(car) (little truck)])
then it doesn’t match “red car” nor “red little truck”.
I could use double quotes here, but then it won’t work with concepts instead of simple words.
Am I doing anything wrong ?
Thanks