Jerry Preston wrote:
>
[snip]
>
>   s/(?=[A-z|0-9]+)\*(?=[A-z]+)/' * '/g;

It's also worth noting that /[A-z]/ isn't what you think
it is. Look:

  use strict;
  use warnings;

  for (map chr, 0x00 .. 0x7F) {
    print if /[A-z]/;
  }

OUTPUT

  ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz

Cheers,

Rob



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to