first of all - thank you peter! more asm samples are always welcome 
secondly, remember that pb's ucase, lcase and mcase functions only
handles the english alphabet, a-z. using these functions on words
with letters above asc 127 will fail, so case insensitive search for
señor günter is pointless, since pb's ucase results in señor gûnter..
because of this, i wrote some asmucase, asmmcase and asmlcase routines
a while ago, which are a bit faster than pb's and handles entire ansi,
see http://www.powerbasic.com/support/pb...ad.php?t=22735
had to. billions of people, including me (really börje) have names that
includes characters > asc 127. surprised anyone dares to use pb's ucase
functions at all, since they will cause "unpredicted" results when used
on many spanish, german, french, whatever.. names and words. should be
quite common even in the usa today..
------------------

secondly, remember that pb's ucase, lcase and mcase functions only
handles the english alphabet, a-z. using these functions on words
with letters above asc 127 will fail, so case insensitive search for
señor günter is pointless, since pb's ucase results in señor gûnter..
because of this, i wrote some asmucase, asmmcase and asmlcase routines
a while ago, which are a bit faster than pb's and handles entire ansi,
see http://www.powerbasic.com/support/pb...ad.php?t=22735
had to. billions of people, including me (really börje) have names that
includes characters > asc 127. surprised anyone dares to use pb's ucase
functions at all, since they will cause "unpredicted" results when used
on many spanish, german, french, whatever.. names and words. should be
quite common even in the usa today..
------------------
Comment