![]() |
help on unicode string with white spaces - 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 on unicode string with white spaces (/showthread.php?tid=46131) |
help on unicode string with white spaces - kimp93 - 2009-02-27 I have a problem unicode string (korean) matching that is surrounded by lots of tab and spaces. Code: <strong>등급</strong></dt> What I trying to get is words between <dd> and </dd>. Code: <RegExp input="$$7" output="<mpaa>\1</mpaa>" dest="8+"> With this, I could get whatever between <dd> and </dd> problem is that I can not get rid of white spaces around words. I tried with no "noclean", "trim", /s, /t which does not help. If I use /b, it get rid of whole string. regex engine does not seem to support /p. I looked at pcre and saying that supporting /p is option. please guide me on this. - kimp93 - 2009-03-06 never mind. I solved the problem. |