Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, we're using the following package to programmatically create excel documents:

org.apache.poi.hssf

If you attempt to set a sheet's name (NOT file, but internal Excel sheet), you will get an error if:

  • The name is over 31 characters
  • The name contains any of the following characters: / \ * ? [ ]

However, after creating a document with a sheet name of:

!@#$%&()+~`"':;,.|

No error is output, and everything seems fine in Java. When you open the excel file in Office 2003, it will give you an error saying that the sheet name was invalid and that it renamed it to something generic like "Sheet 1".

I don't know much about the previously stated package that we're using, but it looks like it's not correctly filtering invalid Excel sheet names. Any idea of how I can filter out all known invalid characters? I'm hesitant to simply filter out all non-word characters.

share|improve this question

2 Answers

up vote 20 down vote accepted

I think the problem is the colon, not the exclamation point.

If you open Excel and try to manually edit a sheet name, the only characters it doesn't let you type are [ ] * / \ ? :

If you paste one of those characters in, you get the following error: (Excel 2003)

While renaming a sheet or chart, you entered an invalid name. Try one of the following:

  • Make sure the name you entered does not exceed 31 characters.
  • Make sure the name does not contain any of the following characters: : \ / ? * [ or ]
  • Make sure you did not leave the name blank.
share|improve this answer
1  
If so, why can I get a sheet name with a colon in it? – Patrick Cuff Jan 16 '09 at 18:43
1  
When I pasted one in, I got the included message, then when I clicked out on the sheet, the colon had changed to a space. Check yours carefully. – BradC Jan 16 '09 at 18:44
Weird, if you ignore the message and hit <enter> again, Excel will take !@#$%&()+~`"':;,.| as the name. But you're right, Excel doens't let you manually type a colon, though you can copy one in. – Patrick Cuff Jan 16 '09 at 18:46
I didn't notice that; can they make the default font for the sheet names any smaller? From a quick glance the ; in the name looked like a :, but you're right (again) :) – Patrick Cuff Jan 16 '09 at 18:48
Try it with 1:2\3/4?5*6[7]8. It is a bit more obvious. – BradC Jan 16 '09 at 18:50
show 1 more comment

This is what I use in C# (should be similar in Java):

const string invalidCharsRegex = @"[/\\*'?[\]:]+";
const int maxLength = 31;

string safeName = Regex.Replace(worksheetName, invalidCharsRegex, " ")
                        .Replace("  ", " ")
                        .Trim();

if (string.IsNullOrEmpty(safeName))
{
    safeName = "Default";   // cannot be empty
}
else if (safeName.Length > maxLength)
{
    safeName = safeName.Substring(0, maxLength);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.