I have a 'text' file - well, sorta. It's actually an event log file from a Dell OpenManage Array Manager application. Technically, it is a binary file but I've never let that stop me.....
The text that is written to the file is in Unicode and I want to monitor for new occurrances of string "A r r a y D i s k" - where the 'spaces' are actually chr$(00)
With a regular expression it would be something like:
A\x00r\x00r\x00a\x00y\x00\x20\x00D\x00i\x00s\x00k
Can Text File test be abused in a way that will work?
If I can detect this string I can catch predicted disk failures early. Thx
