![]() |
How to divide a string into several results with RegEx? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Scrapers (https://forum.kodi.tv/forumdisplay.php?fid=60) +--- Thread: How to divide a string into several results with RegEx? (/showthread.php?tid=75116) |
How to divide a string into several results with RegEx? - Eisbahn - 2010-06-04 Hello again ;=) from the website I only get a list of genres for a movie, which need to be divided. HTML source is as following: Code: <div class="info"> Code: <RegExp input="$$1" output="<genre>\1</genre><genre>\2</genre><genre>\3</genre><genre>\4</genre>" dest="5+"> Any chance to surpress this fault? Regards, Eisbahn - spiff - 2010-06-07 Code: <RegExp input="$$1" output="\1" dest="6"> |