http://qs321.pair.com?node_id=1212597


in reply to Replacing Whitespace with Underscore

If that is your complete code, you are missing any output statements. You have edited the variable $line, which edits the string in memory... but then you do nothing with it. Given that you've chomped the line, I recommend something like print "$line\n"; at the end of your foreach loop

Replies are listed 'Best First'.
Re^2: Replacing Whitespace with Underscore
by CPTQuesoXI (Novice) on Apr 09, 2018 at 16:47 UTC

    I'm angry with myself for forgetting that. That ended up given me exactly what I needed. Thank you!