-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
为什么sheet不支持区分大小写?( Why does sheet not support case sensitivity?) #1856
Comments
Thanks for your issue. This issue has been fixed, please upgrade to the master branch by |
感谢的你的快速回应,如果这是一个bug的话,影响的地方不仅仅是SetSheetName这个函数,还有DeleteSheet这个函数,内部使用的是GetSheetIndex,也许还有更多地方 = = |
Thanks for your feedback. The sheet name is not case-sensitive by default, you can't create two sheet names "Sheet1" and "sheet1" on a workbook, so I think just need to change the behavior of the |
目前看库内部使用的strings.EqualFold来比较两个sheet的名字,但是这个函数是不支持区分大小写的。
比如我想将默认的Sheet1改成sheet1,无法直接更改,只能改成另外一个名字,再将这个名字改为sheet1
Currently, the library uses strings.EqualFold internally to compare the names of two sheets, but this function does not support case sensitivity.
For example, I want to change the default Sheet1 to sheet1. I cannot change it directly. I can only change it to another name, and then change the name to sheet1.
The text was updated successfully, but these errors were encountered: