Date: Thu, 2 Dec 2004 10:50:25 -0800
Reply-To: "M.Jessup" <mjessup@YAHOO.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "M.Jessup" <mjessup@YAHOO.COM>
Organization: http://groups.google.com
Subject: ODS Tagset variable limitations?
Content-Type: text/plain; charset=ISO-8859-1
I have been developing a custom tagset, and have run into a situation
where it seems a memory variable is being truncated. It is happening
in the following code which replaces leading spaces with HTML
non-breaking spaces:
eval $spaces prxparse('s/ / /');
eval $REPLACED prxchange($spaces, -1, VALUE);
put $REPLACED;
Is there a limitation to the storage for memory variables? Is it a
limitation to the regex package? I can find no documentation to
suggest what the cause of the problem might be. Any insight would be
greatly appreciated.
|