Forum Discussion
belltown
9 years agoRoku Guru
' Return array of <item> strings from string containing occurrences of: text=<item>,
'
Function extractTextList (data As String) As Object
list = []
re = CreateObject ("roRegex", ".*?text=([^,]+),(.*)", "s")
ma = re.Match (data)
While ma.Count () > 2
list.Push (ma [1])
ma = re.Match (ma [2])
End While
Return list
End Function
Related Content
- 6 months ago
- 9 months ago
- 4 months ago
- 7 months ago