[antlr-interest] How to handle Spaces inside of a quoted string

Srinivasa dinesh Parupalli din_wins at yahoo.com
Sun Aug 29 21:37:50 PDT 2004


Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: CHCM001.bms
Type: application/octet-stream
Size: 4419 bytes
Desc: CHCM001.bms
Url : http://www.antlr.org/pipermail/antlr-interest/attachments/20040829/aeece040/CHCM001.obj
-------------- next part --------------
A non-text attachment was scrubbed...
Name: bms.g
Type: application/octet-stream
Size: 2656 bytes
Desc: bms.g
Url : http://www.antlr.org/pipermail/antlr-interest/attachments/20040829/aeece040/bms.obj
-------------- next part --------------
using System;

namespace Worksoft.Parsers
{
	/// <summary>
	/// Summary description for ParserHelper.
	/// </summary>
	public class ParserHelper
	{
		private string _xml = string.Empty;

		public ParserHelper()
		{
			//
			// TODO: Add constructor logic here
			//
		}

		public void Test(string message)
		{
			Console.WriteLine(message);
		}

		public void Start()
		{
			_xml = "<xml>\n";
		}

		public void End()
		{
			_xml += "<\\xml>\n";
		}

		public override string ToString()
		{
			return _xml;
		}
	}
}


More information about the antlr-interest mailing list