symbol searcher

By Dooley on Nov 20, 2005

it merely looks for symbols like !@#$%^&*()_+ and converts them into example $chr(43) just right click in status and enter your symbol and it will decode it

menu status {
  Character Code Search: {
    unset %search
    unset %N
    set %search $?"Enter the Symbol you are looking for"
    set %N $calc(1 + %N) | .timercode 1 2 /codes
  }

}

alias codes {
  set %N $calc(1 + %N) {
    if (%search isin $chr(%N)) { /found | halt }
    else { .timercode 1 0 /codes }
  }
}

alias found {
  echo -s symbol %search == $ $+ chr $+ ( $+ %n $+ )
}

Comments

Sign in to comment.
xDaeMoN   -  Nov 20, 2005

Or //echo -a => $asc($$?=\"Enter Character:\")

 Respond  
Pariah   -  Nov 20, 2005

or you could simply type //var %a = $?=\"Enter Character\" | echo -a $asc(%a)

 Respond  
Son_Goku   -  Nov 20, 2005

It\'s pretty slow in the process of finding the code for the symbol. And, Kind of useless in my opinoin. But deserves some credit for trying. Still, nice job. :)!

 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.