#!/usr/bin/perl -w use strict; use CGI; my $query = new CGI; my $str = $query->param('str'); print "Content-type: text/html\n\n"; print q|

|; ############################################################ sub scramble2{ $_=$_[0];s/(\w)(\w+)(\w)/$1.(join'',sort{rand>0.5?1:-1}split\/\/,$2).$3/eg;print; } ############################################################ 0;