https://bz.apache.org/bugzilla/show_bug.cgi?id=60260

--- Comment #5 from Zero <tuyen...@gmail.com> ---
In my test, maybe multi-byte char is invalid when isUnquotedSheetNameChar check
sheet name chars [1], char '・' not match any case in 
> private static boolean isUnquotedSheetNameChar(char ch) {
>   if (Character.isLetterOrDigit(ch)) {
>     return true;
>   }
>   switch(ch) {
>     case '.': // dot is OK
>     case '_': // underscore is OK
>         return true;
>   }
> ...
[1]
https://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/FormulaParser.java?revision=1776796&view=markup#l1178

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to