Here's my issue: I need to use "use bytes," yet in one place in our code we want to count characters in Unicode and not bytes.
a) Use bytes should only work within scope of the current function, so I could declare use bytes within the scope needed and the rest of the time the length function would count characters. This was not true for some reason (use bytes went beyond scope).
b) Do a no bytes for the line I need and then put another use bytes afterwards. Unfortunately the no bytes simply didn't register.