1

Let say I have the following :

items : (item separator)+

this would work for :

i1, i2, i3, 

but not for :

i1, i2, i3

how to make it so it does not require end-separator ?

Bahram Ardalan
  • 280
  • 3
  • 11
sten
  • 7,028
  • 9
  • 41
  • 63

1 Answers1

2

This looks more like what you need:

items: item(,item)*
Bahram Ardalan
  • 280
  • 3
  • 11