rickgerdes
IS-IT--Management
Should be simple, I'm just an idiot.
I have a file I'm trying read, no problems there.
I dump it into an array and skim through line by line, no problem there.
I try to match an expression to the line- not _usually_ a problem there.
The issue is, the lines have spaces between each character, so Status: reads as S t a t u s :.
I can't seem to match to the expanded text. I tried a:
$line=s/\s//;
But EVERYTHING goes away, not just white space.
Help?
I have a file I'm trying read, no problems there.
I dump it into an array and skim through line by line, no problem there.
I try to match an expression to the line- not _usually_ a problem there.
The issue is, the lines have spaces between each character, so Status: reads as S t a t u s :.
I can't seem to match to the expanded text. I tried a:
$line=s/\s//;
But EVERYTHING goes away, not just white space.
Help?