tags:

views:

227

answers:

1

I have a text source with nulls in it and I need to pull them out along with my regex pattern. Can regex even match a null character?

I only realized I had them when my pattern refused to match and when I pasted it into Notepad++ it showed all the null characters.

+3  A: 
\x00

That is a null char.

eBusiness
thanks. works great but just can't get any of my 'visual' tools to work with the null but Regex Buddy's Grep will do it behind the scenes.
Keng