F*U*R*B*Y* commented on a Page, Filter String  -  Aug 22, 2008
alias filter_numbers {
  var %string $1-, %e 256
  while (%e) {
    if ($chr(%e) !isnum) { %string = $remove(%string, $chr(%e)) }
    dec %e
  }
  return %string
}

alias filter_letters {
  var %string $1-, %e 256
  while (%e) {
    if ($chr(%e) !isalpha) { %string = $remove(%string, $chr(%e)) }
    dec %e
  }
  return %string
}

alias filter_chars {
  var %string $1-, %e 256
  while (%e) {
    if (($chr(%e) isalpha) || ($chr(%e) isnum)) { %string = $remove(%string, $chr(%e)) }
    dec %e
  }
  return %string
}

winner? :P

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.