Trying to remove invalid characters

Alpha Blue wrote:

When parsing win/loss scores from ESPN, I notice that the output looks perfectly normal, even when I carefully inspect the output.

It looks like this:

wloss = /^\w\s\d{1,2}-\d{1,2}/ puts @rows[i][3]

[...]

Unrelated to your issue, but...what's with the [i] ? If you want to write PHP, do it in PHP. If you want to write Ruby, use .each. :slight_smile:

Best,