This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Parsing & splitting a string n times


Hi,

  I have the following problem. Could someone help, please?
 
  I have a string in the following format: 
  
   <add-attr attr-name="PHONENO">
         <value type="string">value1,value2,valu3,......</value>
    </add-attr>

   the number of values are not fixed & can vary every time.

    I need to split this string at the commas & put each value in a separate
value tag.

   like:
     <add-attr attr-name="PHONENO">
         <value type="string">value1</value>
         <value type="string">value2</value>
         <value type="string">value3</value>
         .
         .
         .	
    </add-attr>

   What i would like to know is, Are the concepts like arrays/lists or loops
handled in XSL?


Thanks in advance

shilpa


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]