the line "ArraySize 4285" is identified by the regular expression. would'nt . $1. initialize $1 with the value "4285"... which is the string next to "ArraySize"?
If the string is at the beginning of the line: you have the '^' at the beginning your regex.
You also have to make sure that what you think is a single space is really a single space.
Try changing the space in the regex to, say, '\s+' to match any kind and amount of white space.
There are probably other things that could go wrong that I haven't thought of...