B
Bob Sanders
Hello,
I'm wondering how you'd extract information from an email address like
"(e-mail address removed)" to get these results from that email:
@player_id = 2222
@game_id = 8888
I'm thinking it's something along the lines of:
email = (e-mail address removed)
@player_id = email.gsub(...)
@game_id = email.gsub(...)
Any ideas what belongs in the gsubs?
I'm wondering how you'd extract information from an email address like
"(e-mail address removed)" to get these results from that email:
@player_id = 2222
@game_id = 8888
I'm thinking it's something along the lines of:
email = (e-mail address removed)
@player_id = email.gsub(...)
@game_id = email.gsub(...)
Any ideas what belongs in the gsubs?