F f4u5t Member Licensed User Longtime User Dec 19, 2012 #1 Could someone please show me how I can find a image url in a string so far this is what Ive tried Desc = Text.ToString pattern = "img src=\q([^q]+)\q".Replace("q", QUOTE) imgsrc = Regex.Matcher(pattern, Desc) Log(imgsrc.Match) Last edited: Dec 19, 2012
Could someone please show me how I can find a image url in a string so far this is what Ive tried Desc = Text.ToString pattern = "img src=\q([^q]+)\q".Replace("q", QUOTE) imgsrc = Regex.Matcher(pattern, Desc) Log(imgsrc.Match)
Erel B4X founder Staff member Licensed User Longtime User Dec 19, 2012 #2 See FlickerViewer example. Upvote 0