Tagged Questions

10
votes
4answers
19k 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)?
3
votes
2answers
2k views

removing invalid XML characters from a string in java

Hi i would like to remove all invalid XML characters from a string. i would like to use a regular expression with the string.replace method. like line.replace(regExp,""); what is the right regExp ...
2
votes
1answer
1k views

filter/remove invalid xml characters from stream

First things first, I can not change the output of the xml, it is being produced by a third party. They are inserting invalid characters in the the xml. I am given a InputStream of the byte stream ...