Ruby on Rails
Monday, November 5, 2018
On Monday, November 5, 2018 at 7:08:27 AM UTC-5, bot Peña wrote:
On Mon, Nov 5, 2018 at 5:18 AM fugee ohu <fuge...@gmail.com> wrote:I'm trying to split on spaces but one of the data columns has spaces in it and no quotes around it It's sms exported from my phone I wanna save them to a table Each line looks like the line below The first is the phone number then the date and time, then the body of the sms message and then a single digit 1 or 2 to indicate if the message was sent or received Looks like between time and message body there's a tab delimeter but the other delimeters are single spaces but then the message body contains single spaces and so does the date and time column How can I split this?+2124914028 06/09/2017 12:21:56 Are we meeting up for breakfast today? 1just split it by parts (simpler for me).eg,> s="+2124914028 06/09/2017 12:21:56 Are we meeting up for breakfast today? 1"
=> "+2124914028 06/09/2017 12:21:56 Are we meeting up for breakfast today? 1"
> phone,date,time,remaining=s.split(/\s/,4)
=> ["+2124914028", "06/09/2017", "12:21:56", "Are we meeting up for breakfast today? 1"]the remaining part is similar.best regards--botp
Thanks
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/484bec01-c123-4ab8-855f-f0106923d98b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment