docs.roxen.comView this page in a printer friendly mode
DocsRoxen2.1Web Site Creator ManualText Tags
Copyright © 2001, Roxen Internet Software
Suggestions, comments & compliments
manuals@roxen.com
 DEMO  DOCS  PIKE
 COMMUNITY  DOWNLOAD
www.roxen.com

   

<ai>
<autoformat>
<case>
<comment>
<?comment ?>
<default>
<doc>
<foldlist>
<obox>
<random>
<replace>
<smallcaps>
<sort>
<strlen>
<tablify>
<trimlines>
<wash-html>

<sort></sort>

Provided by module: RXML 2 tags

Sorts the contents.



  <sort>
   1
   Hello
   3
   World
   Are
   2
   We
   4
   Communicating?
  </sort>
 
1 2 3 4 Are Communicating? Hello We World

Attributes

separator="string"

Defines what the strings to be sorted are separated with. The sorted string will be separated by the string.



  <sort separator='#'>
   1#Hello#3#World#Are#2#We#4#Communicating?
  </sort>
 
1#2#3#4#Are#Communicating? #Hello#We#World

reverse

Reversed order sort.



  <sort reverse=''>
   1
   Hello
   3
   World
   Are
   2
   We
   4
   Communicating?
  </sort>
 
World We Hello Communicating? Are 4 3 2 1