Character class [^A-Z] don't work - 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: Character class [^A-Z] don't work (/showthread.php?tid=65852) |
Character class [^A-Z] don't work - muttley:bd - 2010-01-02 I think [^A-Z] (upper case) don't work with new xbmc relese i have also added cs="true" to expression tag... i'm not sure of this problem but some my test report this on debug: ERROR: InternalGetDetails: Unable to parse web site [...] when there is [^A-Z] pattern... thanksss again! - althekiller - 2010-01-02 regexps in XBMC are applied case-insensitive by default, I dunno if there's an interface to specify otherwise for scrapers or not. - muttley:bd - 2010-01-03 there is cs="true" attrib for expression tag... Scraper not use case-insensitive with [^A-Z], but report error: Code: ERROR: InternalGetDetails: Unable to parse web site [...] I'm sure that in old xbmc release scraper worked good... - muttley:bd - 2010-01-05 could be a little regression?! [^A-Z] (with cs="true") don't work as case sensitive...am i wrong in somethings? - spiff - 2010-01-05 cs="yes". i should probably extend those to handle both yes/no and true/false. - muttley:bd - 2010-01-05 oooopppssssss now...work well!!! cs="yes" is good...i don't know because wrote cs="true" thanks!! |