Hi,

I'm trying to write a really simple function which will return either TRUE or FALSE depending on whether a string contains multibyte characters or not. The reason I need to do this is to create another string handling function, however, it needs to know if it's handling a western or Japanese string first. So, it would work something like this:

MultibyteChecker("We ate bacon and bread") = FALSE

MultibyteChecker("ベーコンとパンを食べた") = TRUE

Thanks a lot for reading!