module OperaContacts
Public Class Methods
parse_s(hotlist_string)
click to toggle source
Parses the given string containing Hotlist formatted contacts to a ContactCollection
.
@param hotlist_string A UTF8 string containing the Hotlist info @return A ContactCollection
containing the parse result of hotlist_string
# File lib/opera-contacts/parser.rb, line 10 def OperaContacts.parse_s(hotlist_string) return ContactsParser.new.parse_s(hotlist_string) end