Can't come up with a BNF grammar for the sequence of characters (possibly empty), separated by comma, but not starting or ending with a comma,
So this is OK:
<--- Empty sequence is ok!
A
A,B
A,B,C
This is NOT ok:
A,
,A
A,,B
AB
The empty case throws me off. What I got so far is:
<char-seq> ::= <empty> | <char> , <char-seq> | <char>
but this produces strings like A,
:-(