| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8
Comments:
aspergos: hey room who want to seee my mum?*
<0> i think the xslt i wrote over the weekend won't work with java xslt parsers <1> hi <1> need help with preg_mutch_all <0> you sure do. <2> _TheDru|D_: ask away <1> pattern is: "/@(.*?)@/" <1> string is: "asd @ df m0988@xxx @ - @ s @" <2> you want everything between @s? <1> result is: 1 matched: >@ df m0988@< <1> 2 matched: >@ - @< <1> tring to do parser <1> need to parse html price list :) but can't understand why errors <2> use explode("@", $line) instead <2> or... <2> '/@([^@]*)(?=@)/' ... but explode will be faster <0> hmm
<0> xalan can call java cl***es inside the xslt <0> that may be useful <1> pizza_milkshake: thx :) complex pattern :) <2> _TheDru|D_: no, just ugly <1> lol <2> also, if the line doesn't end with @ you won't get the last field <2> so you could do <2> '/@([^@]*)(?=@|$)/' <2> to be on the safe side <2> ...but explode will give you better performance and be more understandable <2> i recommend explode <3> i recommend asplode <3> *POP* <1> asplode? <3> "ignore the man behind the curtain" <3> god, is it friday yet <1> :)) <1> but as I see its hard to get substring between "@" only <2> ? <1> what is "=" ? <2> (?=...) means "followed by, but don't actually capture it" <2> before you were getting every other match, because the trailing @ (which is the beginning of the next field) was being "consumed" by the regex <1> ok... <2> [@a@]b[@c@] vs [@a][@b][@c]@ <2> where "[...]" indicates a substring where the pattern will match <1> ok <1> where is good manual about preg syntax? <4> @google "good manual about preg syntax" <5> Search results for "good manual about preg syntax": <5> no results found. <4> pffst <4> @google "good preg syntax" <5> Search results for "good preg syntax": <5> no results found. <4> @google "preg syntax" <5> Search results for "preg syntax": <5> http://forums.devshed.com/archive/t-184734/preg-syntax <5> http://forums.devshed.com/t253753/s.html <5> http://sources.redhat.com/ml/libc-hacker/2003-11/msg00013.html <5> http://sources.redhat.com/ml/libc-hacker/2002-11/msg00014.html <5> http://www.phpfreaks.com/forums/index.php?showtopic=63307 <5> http://www.google.com/search?hl=en&ie=ISO-8859-1&q=%22preg+syntax%22&btnG=Google+Search <4> @google "regex beginner's tutorial" <5> Search results for "regex beginner's tutorial": <5> no results found. <4> @google "regex introduction" <5> Search results for "regex introduction": <5> http://www.anaesthetist.com/mnm/perl/regex.htm <5> http://www.boost.org/libs/regex/doc/introduction.html <5> http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/boostjp/boost/libs/regex/introduction.htm <5> http://www.zenspider.com/Languages/Ruby/Cookbook/Regex/index.html <5> http://www-eleves-isia.cma.fr/documentation/BoostDoc/boost_1_29_0/libs/regex/introduction.htm <5> http://www.google.com/search?hl=en&ie=ISO-8859-1&q=%22regex+introduction%22&btnG=Google+Search <0> my one coworker is beginning to really get on my nerves <2> _TheDru|D_: php.net/pcre <6> @google good preg *** <5> Search results for good preg ***: <5> http://www.medhelp.org/forums/maternal/messages/38452.html <5> http://www.babycentre.co.uk/refcap/390.html <5> http://www.caringforkids.cps.ca/teenhealth/EmergencyContraception.pdf <5> http://au.messages.yahoo.com/health/women-***ual-health/665/
<5> http://www.familiesaretalking.org/teen/srarticles/Pages%2030-31%20from%2031-4.pdf <5> http://www.google.com/search?hl=en&ie=ISO-8859-1&q=good+preg+***&btnG=Google+Search <6> lol <0> @google grandpa watersports bdsm <5> Search results for grandpa watersports bdsm: <5> http://links.***tracker.com/Adult_Photography/BDSM/Hardcore/ <5> http://links.***tracker.com/Adult_Photography/BDSM/ <5> http://quantum.proadult.com/dir/fetish-spanking.html <5> http://www.csc.calpoly.edu/~jdalbey/305/Talks/piss.html <5> http://www.csc.calpoly.edu/~jdalbey/305/Talks/plumper.html <5> http://www.google.com/search?hl=en&ie=ISO-8859-1&q=grandpa+watersports+bdsm&btnG=Google+Search <0> calpoly? <0> k... <0> @google incest blumpkin <5> Search results for incest blumpkin: <5> http://forum.incestchat.org/forum/printthread.php?t=41484 <5> http://forum.incestchat.org/forum/showthread.php?t=41484 <5> http://www.villagevoice.com/news/0441,sylvester,57456,1.html <5> http://www.villagevoice.com/issues/0441/sylvester.php <5> http://everything2.com/index.pl?node='Tis%20Pity%20She's%20a%20Whore <5> http://www.google.com/search?hl=en&ie=ISO-8859-1&q=incest+blumpkin&btnG=Google+Search <6> :O <7> got a quick question... i keep getting this error: <7> Warning: mysql_fetch_row(): 3 is not a valid MySQL result resource in /hsphere/local/home/ctoky/commercialtrucksofky.com/showTruck.php on line 25 <7> i've done some research and can't figure it out why i'm getting it <7> i've tried... <7> while ($row = mysql_fetch_row($result)), while ($row = mysql_fetch_row($result, MYSQL_NUM)), while ($row = mysql_fetch_row($result, MYSQL_BOTH)).. <7> always same thing <7> can anyone point me in the right direction? <8> cold morning <6> how are you creating $result <8> i mean good morning <7> $result = mysql_query("SELECT * from Inventory"); <6> @mysql_query <5> (PHP 3, PHP 4, PHP 5) <5> resource mysql_query ( string query [, resource link_identifier] ) <5> Send a MySQL query <5> http://www.php.net/mysql-query <7> thank you <7> why won't the default constant work <7> MYSQL_NUM <6> well I did that for my own reference <9> @mysql_num <6> heh <5> Did not find any matches for mysql_num <5> Possible matches (best first): <5> msql, msql_dbname, msql_num_fields, msql_num_rows, msql_numfields, msql_numrows, mssql_num_rows, mysql_db_name, mysql_errno, mysql_info, mysql_num_fields, mysql_num_rows, mysql_ping, mysql_query, mysql_tablename, mysqli_info, mysqli_init, mysqli_num_fields, mysqli_num_rows, mysqli_ping <7> hmm, well <7> i'm trying mysql_query("SELECT...", 1); <7> and it's returning <7> Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /hsphere/local/home/ctoky/commercialtrucksofky.com/showTruck.php on line 24 <6> yeah <6> that means your mysql_query failed <7> how? it works fine without the 1 in there but just gives the warning <6> why are you specifying a link id? <7> my original error <7> "3 is not a valid MySQL result resource" <6> yeah <7> don't i need to specify $result to an int <7> then use that int for my get_row <7> er <7> fetch_row <6> no <6> the link id is only for manually overriding which connection to use <6> it should be left off in normal usage <7> ok <7> so leaving it off still gives me <7> 3 is not a valid MySQL result resource <6> show me your line now <7> $result = mysql_query("SELECT * from Inventory"); <7> while ($row = mysql_fetch_row($result, 1)) { <7> ...
Return to
#php or Go to some related
logs:
#india appni isp kirisaki bus Zdenka_Podkapova #india avoie georgian #allnitecafe dsardan sinboy georgia #india
|
|