couldn't figure out an easy way after looking around the forums... maybe i'm being a noob... probably going to use lreplace to do it? foreach tr [regexp -all -inline {<tr class="dlc_info_row">.*?</tr>} $data] { regexp {<tr class="dlc_info_row">.*?<td>(.+?)</td>.*?<td>(.+?)</td>.*...
I asked a different admin for my hosting company to see what was up, and he got it working in 2 minutes ROFL. libmysqlclient.so.16 => /usr/local/lib/mysql/libmysqlclient.so.16 (0x2816b000) libcrypt.so.3 => /lib/libcrypt.so.3 (0x281cf000) libm.so.4 => /lib/libm.so.4 (0x281e7000) libz.so.3 => /lib/lib...
it was .so , I tried that also [11:34] couldn't load file "/usr/local/lib/mysqltcl-3.05/libmysqltcl3.05.so": Cannot open "/usr/local/lib/mysqltcl-3.05/libmysqltcl3.05.so" while executing "load /usr/local/lib/mysqltcl-3.05/libmysqltcl3.05.so" (file "eggdrop.conf&quo...
I can just recomplie the eggdrop, without changing any of the settings? [02:50] Tcl error in file 'eggdrop.conf': [02:50] couldn't load file "/usr/local/lib/mysqltcl-3.05/libmysqltcl3.05": Cannot open "/usr/local/lib/mysqltcl-3.05/libmysqltcl3.05" while executing "load /usr/...
start with a public proc / bind set pubtrig "!" #public format !displayfile folder file line bind pub - ${pubtrig}displayfile display:pub proc display:pub {nick uname hand chan text} { set folder [lindex [split $text] 0] set file [lindex [split $text] 1] set line [lindex [split $text] 2] }...
can't figure out how to install this at all- the coding to utilize it seems super easy, I used the search feature still couldn't figure it out. http://www.xdobry.de/mysqltcl/ http://www.xdobry.de/mysqltcl/mysqltcl-3.05.tar.gz is what i want to use I am using a freebsd shell, so I have no idea what t...
your way didn't completly work, but thanks you got me where I needed =] regexp {<div class="dlc_week">(.*?)</div>} $data - week putserv "PRIVMSG $c :$week" regexp {<table class="dlc_table".*?>(.*?)</table>} $data - data foreach tr [regexp -all -inline {<tr class="d...
that works great, but what I was trying to figure out is how to make it only paste the first weeks information, it keeps going until it runs out of songs, when I want it to stop after it reaches the first </table>
regexp {<tr class="dlc_info_row">.*?<td>(.*?)</td>.*?<td>(.*?)</td>.*?<td>(.*?)</td>} $data - artist title type ended up being the code thanks to you rosc2112... but I can't come up with a good way to keep grabbing more songs until I get to </table> this is how the page is laid out. <tr c...
still not having and luck with the multi line parsing its hard: regexp {<div class="dlc_week">(.*?)</div>} $data - week putserv "PRIVMSG $c :$week" regexp {<tr class="dlc_info_row"> <td>(.+?)</td>} $data - artist putserv "PRIVMSG $c :$artist" http::cleanup $da...