output:#!/usr/local/bin/perl use strict; use warnings; my $input = 'abcdef'; my $start = 'a'; while (1){ last if $start eq $input; $start++; } print "$input -> $start\n";
abcdef -> abcdef
In reply to Re: BRUTEFORCE problem and a ?bug?
by wfsp
in thread BRUTEFORCE problem and a ?bug?
by xoddam
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |