![]() |
help arrange code - 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: help arrange code (/showthread.php?tid=72482) |
[SOLVED] help arrange code - drascom - 2010-04-20 web site searh more succes with one word searching but title "the" problem for me i want to use second word of movie name if it's starting "the" .(like : the pacific) other situation first word enough for me.. if i use 1. word of movie name it's cannot find right info which movies start "the" i try first row Code: <RegExp input="$$1" output="\1" dest="2"> Code: the+pacific+2009+TR+DVDRip+Xvid-LTRG.avi second row Code: <RegExp input="$$2" output="http://beyazperde.mynet.com/arama.asp?kat=film&keyword=\1+\2" dest="3"> result Code: the+pacific - spiff - 2010-04-20 Code: <RegExp input="$$2" output="http://beyazperde.mynet.com/arama.asp?kat=film&keyword=\1+\2" dest="3"> not work - drascom - 2010-04-21 your code didn't help me but thanks again for help i found the solution for my stupid web source (beyazperde.mynet.com) now movie name count and structure doesnt matter it finds all movies..... Code: <RegExp input="$$2" output="http://beyazperde.mynet.com/arama.asp?kat=film&keyword=\1" dest="3"> Now i started new scraper the problem is i have results for \1 like that: Code: Fantastic Mr. Fox (2009) how can i clean " &quot;" - KoTiX - 2010-04-22 Do not use the "noclean=1" maybe? thanks - drascom - 2010-04-22 i found different solution.i grab differnt part of html now it's ok. but i have to learn "post method" for new scraper.. |