Re: How to Implement a BNF syntax in perl?

2004-02-07 Thread wolf blaum
For Quality purpouses, Balaji Thoguluva 's mail on Friday 06 February 2004 18:49 may have been monitored or recorded as: Hi, Hi I have a long BNF (Backus-naur form) for parsing a protocol message. Suppose I want to implement a BNF like this Response = Status-line

How to Implement a BNF syntax in perl?

2004-02-06 Thread Balaji Thoguluva
Hi, I have a long BNF (Backus-naur form) for parsing a protocol message. Suppose I want to implement a BNF like this Response = Status-line *(message-header) CRLF [Message-body] status-Line = SIP-Version SP Status-Code SP

Re: How to Implement a BNF syntax in perl?

2004-02-06 Thread Randy W. Sims
On 02/06/04 12:49, Balaji Thoguluva wrote: Hi, I have a long BNF (Backus-naur form) for parsing a protocol message. Suppose I want to implement a BNF like this Response = Status-line *(message-header) CRLF [Message-body]