Posted: Fri Apr 08, 2005 4:57 am Post subject: cery simple
Disciple
Joined: 03 Feb 2005 Posts: 171
you simply can use SUBSTRING function.
See the following ESQL, it may be needful to you
DECLARE IN_Point INTEGER;
SET IN_Point = POSITION( '.' IN InputBody.Tag1);
SET OutputRoot.XML.First = SUBSTRING(InputBody.Tag1 FROM 1 FOR IN_Point - 1);
SET OutputRoot.XML.Second = SUBSTRING(InputBody.Tag1 FROM IN_Point + 1);
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum