Tagged Questions

6
votes
4answers
3k views

C# Sanitize File Name

I recently have been moving a bunch of MP3s from various locations into a repository. I had been constructing the new file names using the ID3 tags (thanks, TagLib-Sharp!), and I noticed that I was …
5
votes
4answers
539 views

Is there a Python library function which attempts to guess the character-encoding of some bytes?

I'm writing some mail-processing software in Python that is encountering strange bytes in header fields. I suspect this is just malformed mail; the message itself claims to be us-ascii, so I don't …
3
votes
2answers
436 views

How To Parse XML With Invalid Characters in Node Name?

So I'm trying to parse some XML, the creation of which is not under my control. The trouble is, they've somehow got nodes that look like this: <ID_INTERNAL_FEAT_FOCUSED_EXPERTISE_(MORNINGSTAR) …
3
votes
3answers
552 views

Will string.Trim() ever remove *valid* characters from a filename?

I'm creating a class to store a filename. To do so, I need to know exactly which characters are invalid and exactly which characters are invalid as leading/trailing characters. Windows Explorer …
3
votes
4answers
4k views

Valid characters in a Java class name

What characters are valid in a Java class name? What other rules govern Java class names (for instance, Java class names cannot begin with a number)?
2
votes
9answers
936 views

XSLT: Cannot get xslt to output an (&) even after escaping the character.

I am trying to create a query string of variable assignments separated by the & symbol. (ex: "var1=x&var2=y&...") I plan to pass this string into an embedded flash file. I am having …
1
vote
4answers
2k views

Base64 String throwing invalid character error.

I keep getting a Base64 invalid character error even though I shouldn't. The program takes an XML file and exports it to a document. If the user wants, it will compress the file as well. The …
0
votes
1answer
497 views

Struts2 Annotation-Validators for Invalid Chars

Heyall, While using Struts2, I am using several annotations to do my validations inside the Model class, in the set() methods, like: @RequiredStringValidator(message = "Name is required") …