I have an HTTPHandler that is reading in a set of CSS files and combining them and then GZipping them. However, some of the CSS files contain a Byte Order Mark (due to a bug in TFS 2005 auto merge) and in FireFox the BOM is being read as part of the actual content so it's screwing up my class names etc. How can I strip out the BOM characters? Is there an easy way to do this without manually going through the byte array looking for ""?
|
|
Is the BOM appearing in the actual text itself, or just at the very start? I'd be surprised to see it anywhere other than at the start of the data - in which case simply ignoring the first 3 bytes (assuming UTF-8) should do the trick. |
||
|
|
|
|
Expanding on Jon's answer with a sample.
|
||
|
|
|
|
Another way, assuming UTF-8 to ASCII.
|
||
|
|
|
|
FWIW, you could open the files in Notepad++ and save them without the Byte Order Mark. It's what I had to do in this question. |
||
|
|
|
|
|
||
|
|
