all parms random randomize randomize_vs_shuffle total
Random vs shuffle
|
HTML
|
RESULT
|
{sequence 'A..Z'} {$sequence} {/sequence}
|
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
|
{sequence 'A..Z', shuffle} {$sequence} {/sequence}
|
T Q B Z Y J V F N A P U L M H O W K C I S E D X R G
|
{sequence 'A..Z', shuffle, sort} {$sequence} {/sequence}
|
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
|
{sequence 'A..Z', random} {$sequence} {/sequence}
|
L W P G I Y H P A B T V P W B Y W Y X L X Z B A S D
|
{sequence 'A..Z', random, sort} {$sequence} {/sequence}
|
B C C D D F F G K K N P Q R R R R R T U W X X X Y Z
|
|
HTML
|
RESULT
|
{sequence 'A..Z', random, unique, sort} {$sequence} {/sequence}
|
B C D E G H I J M N O Q R S U V X Y Z
|
{sequence 'A..Z', random, dedup, sort} {$sequence} {/sequence}
|
B C D E F G H I J K L M O P U V W X Y Z
|
{sequence 'A..Z', reverse} {$sequence} {/sequence}
|
Z Y X W V U T S R Q P O N M L K J I H G F E D C B A
|
{sequence 'A..Z', reverse, sort} {$sequence} {/sequence}
|
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
|
|