docs.roxen.com
main | demo | docs
download | community | pike
© 2000 Roxen Internet Software
Suggestions, Comments or Complaints
manuals@roxen.com

DocsRoxen2.0Web Site Creator ManualText tags
   

  • <ai>
  • <autoformat>
  • <case>
  • <comment>
  • <default>
  • <doc>
  • <foldlist>
  • <obox>
  • <random>
  • <replace>
  • <smallcaps>
  • <sort>
  • <strlen>
  • <tablify>
  • <trimlines>
  • <sort></sort>

    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
    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