mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #223] Worksheet names ending in single-quote aren't raising an error #180
Labels
No labels
awaiting user feedback
bug
cmake
cmake
docs
feature request
in progress
long term
medium term
medium term
pull-request
question
question
ready to close
short term
under investigation
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/libxlsxwriter#180
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mewalig on GitHub (Apr 10, 2019).
Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/223
Originally assigned to: @jmcnamara on GitHub.
If a worksheet is created using a name where the final char is a single-quote, libxlsxwriter should raise an error, but does not. The below screenshots show
The screenshots use a name of 31 chars but it appears that the issue exists whenever the name ends in single quote
@jmcnamara commented on GitHub (Apr 10, 2019):
Thanks. That is a bug.
@RaFaeL-NN commented on GitHub (Apr 11, 2019):
Single-quote cannot be the first char too
@jmcnamara commented on GitHub (Apr 15, 2019):
For the record the limitations on worksheet naming are given here:
@jmcnamara commented on GitHub (Jun 6, 2019):
Fixed on master. The function now returns
LXW_ERROR_INVALID_SHEETNAME_CHARACTERif the worksheet name starts on ends with an apostrophe.@jmcnamara commented on GitHub (Jun 7, 2019):
Changed the function to return an error specific code:
LXW_ERROR_SHEETNAME_START_END_APOSTROPHE.