Regex Split problem, probably a no brainer. Programming Software Development by evildrome … format (sPage) was changed and I need to get the regexs updated. I got them updated OK. I checked them all… RegexBuddy and individually, they all work. I substituted the old regexs for the new but now after the regex split command… Need Help rewriting this Script Programming Web Development by programmer12 …,url){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regexS="[\\?&]"+name+"=([^&#]*)";var regex=new… RegExp(regexS);var results=regex.exec(url);return(results==null)?""… Problem with Regexec matching Programming Software Development by mx tommy …;the bad dog chased the big cat around "; /* compile regexs and store the compiled form in the array */ for (i… pattern: %s\n", patterns[i].pattern); return 1; } } /* execute regexs */ for (i = 0; i < sizeof(patterns)/sizeof(patterns[0… Function ? Programming Web Development by aiki985 …{ name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regexS = "[\\?&]"+name+"=([^&#]*)"; var regex …= new RegExp( regexS ); var results = regex.exec( window.location.search ); if(… Re: Function ? Programming Web Development by Taywin …. name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); 3. var regexS = "[\\?&]"+name+"=([^&#]*)"; 4. var regex… = new RegExp( regexS ); 5. var results = regex.exec( window.location.search ); 6. if… Java Regular Expressions Programming Software Development by mihu Hallo everybody, Can someone help me with some regexs for testing : - in a textbox , i need to test only … regular expression help Programming Software Development by deadsolo … expression I came up with(I'm a noob at regexs). Pattern p = Pattern.compile("\\D+(\\d+)(\\d+)(\\d+)(\\d… Re: regular expression help Programming Software Development by deadsolo … for this question though since it strays pretty far from regexs I think. Thanks again! Re: SQL Server Insertion Programming Databases by rEhSi_123 … by me so I am trying to test every possible regexs :$ In your last reply [quote][url]http://www\.boards\.ie…. So would the following be right for forum and thread regexs: [CODE]\forumdisplay\.php\?f=([0-9]+) \showthread\.php\?p=([0… Re: Get patterns from binary with Perl? Programming Software Development by Garidius …nor end of lines, the following regexs work and would extract the numbers…ff32001b01991145278934550f73494549232fffff ff32000071991145278934551f73494554768fffff 03800f0102000000307349526905ffffff00810f01020000013a73495269559fffff008310010c0000009f7349526905ffffff0101840e0001000001000100ffff00000101 I think that regexs for binary data would be … Re: Validate a text field for multiple criteria Programming Web Development by Airshow …> [/CODE] Please note, I'm not recommending the coded regexs, they are just ones I either found after a quich… Re: Help with Regex Programming Software Development by shankbond … for the reply again, though I had been working on regexs for hours know and scratching my head. But still I… Re: Help with two tricky methods??? Please? Programming Software Development by Taywin … are on the right track using matches functionality. Though, your regExs aren't quite there yet. Also, you should rearrange the… Re: Should be an easy fix with Java delimiter Programming Software Development by JamesCherrill …; ... but there are others here who are for moreexpert in regexs than I am. Re: Regular Expressions Programming Web Development by hielo …) */ var re=/^[0-9]+/ [/CODE] Look for online tutorials on regexs. It will be more productive for you if you first… Re: Need help with regex to grab two numbers from a file Programming Software Development by deadsolo Thank you hielo! That regex works for me. I am very new to regexs and don't really graps the concept of grouping well yet, but that really helped. edit: To any moderators or veterans of this forum bored. Is there a way for me to flag this question/thread as being anwsered? Re: Starting First Perl project Programming Software Development by DoRight I would start by doing some log parsing. That will give you an idea about how to use regexs (regular expressions) in a simple, but useful program. From that you can try dumping the info retrieved in a db or sending an alert. Re: Reading a file Programming Software Development by JamesCherrill … arraylists to get a word and hint. No need for REGEXs Re: Windows Explorer is unstable Hardware and Software Microsoft Windows by Hiroshe … manager, or the command line. Thats for the reason of regexs as well as performing operations on the files. However I… Re: Replacing multiple words with Regex Programming Software Development by JamesCherrill I'm no regex expert, but my guess is that you can't, or, if you can, it's ludicrously complex. The real question is: why? Why not just run two simple replace commands with two simple regexs? Re: Custom highlighting in vim Programming Software Development by Hiroshe … able to specify the things you want to colour with regexs I beleive). Also, the help system in vim is amazing… Re: email not validating Programming Web Development by JamesCherrill No no. Regexs will work with hundreds of chars. I was just saying that when they get long they are so hard to read and understand. So it's amazing that anyone can get them right! Some of the examples on the link I posted are even longer, but they are all tested and working OK. Re: Reguler Expression (regix) problems Programming Software Development by JamesCherrill …. The `replace` method in the earliest code doesn't use regexs. The `replaceAll` in the later code does use a regex… Re: Need Help rewriting this Script Programming Web Development by Graphix A) This is not the existing scripts forum B) Send an email to the person that wrote this script and ask him to answer your question C) The code is extremely unreadable, unclear and confusing. As I did not wrote the code, I have no idea what it does. It does not even have any comments. I assume you did not wrote this script, and if you do you'd … Re: Need Help rewriting this Script Programming Web Development by programmer12 Rite, I tried asking the person that wrote this but they didnt respond back to me... =/ so I was thinking that maybe you all can help me out. Re: Need Help rewriting this Script Programming Web Development by programmer12 The website is [url]http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/[/url] Re: Need Help rewriting this Script Programming Web Development by programmer12 PLEASE HELP!, Im a Noob at Javascript.Jquery so im not sure what this guy was thinking not commenting on this script.. but please help!!! Re: Need Help rewriting this Script Programming Web Development by programmer12 Oh well I guess no1 wants to help me booo Re: Problem with Regexec matching Programming Software Development by nezachem At lines 49-50, why do you index matches with i? Re: Problem with Regexec matching Programming Software Development by mx tommy [QUOTE=nezachem;1655710]At lines 49-50, why do you index matches with i?[/QUOTE] OMG... You don't know how long I searched to find what was the problem! I thought maybe I was doing something wrong with memory or pointers (both being very new to me) Such a stupid mistake... Thanks a million for taking the time to look at the code and point out …