pub fn validate_sheet_name(name: &str) -> Result<()>Expand description
Validate a sheet name according to Excel rules.
A valid sheet name must:
- Be non-empty
- Be at most
MAX_SHEET_NAME_LENGTH(31) characters - Not contain any of the characters
: \ / ? * [ ] - Not start or end with a single quote (
')