Backslashes can be removed from a JavaScript string as follows: var strBackslash = '\\backslash'; var strReplace = strBackslash.replace(/\\/,''); document.write(strReplace); Related a… more →
Joey JavaScriptkeelan2 wrote 3 weeks ago: Back references in regular expressions in Python work just like you’d expect them to. For exa … more →
John wrote 3 weeks ago: Found a nice article describing how to use jQuery and RegEx to validate form input fields on your we … more →
Paulo Renato wrote 3 weeks ago: I’ve been working for a while now in a way to compress multiple JS and CSS files in Java. I … more →
Sarah wrote 3 weeks ago: (0[1-9]|[12][0-9]|3[01])[/](0[1-9]|1[012])[/](19|20)[0-9]{2} I’m not going to try and explain … more →
gabrielrossman wrote 3 weeks ago: | Gabriel | Most of the datasets we deal with are rectangular in that the variables are always in th … more →
NoFear wrote 1 month ago: Regular Expressions with PHP: Regular Expressions is a powerful tool where in one can match for a pa … more →
pankajlalwani wrote 1 month ago: A cheat sheet or crib sheet is a concise set of notes used for quick reference. You can download che … more →
robbsadler wrote 1 month ago: Regular Expressions are very handy but sometimes can be daunting depending on what you need to vali … more →
Jared wrote 1 month ago: Some time ago, I wrote about doing batch processing of text with an external process running, e.g. P … more →
wibblz wrote 1 month ago: Developers, have you seen http://www.rubular.com? I’ve been using this tool for at least a mo … more →
spinoza1111 wrote 1 month ago: Jeff Atwood has long blogged about “coding horrors”, but reading this post crystallizes … more →
preetha21 wrote 1 month ago: For membership-oriented websites, registration forms are one of the most important parts. A problema … more →
dturk wrote 1 month ago: As a first real post, I’ve decided to throw out this little script to illustrate the sort of c … more →
Jason Garber wrote 1 month ago: Over at smashing magazine, they have a great post on PHP’s preg_match() regular expressions. … more →
Dalin Seivewright wrote 2 months ago: I’ve made some small progress with the Amateura Lexer. I haven’t been working on very m … more →
balajirrao wrote 2 months ago: Just today I found a stable and powerful way to validate inputs in C, using regular expressions. Gnu … more →
spinoza1111 wrote 2 months ago: Note: this post is for computer scientists and geeks. Scroll down or use the back and forth blocks … more →
magsol wrote 2 months ago: Last semester, sometime around October or November (whenever it was that registration opened), I had … more →
apcig wrote 2 months ago: Great entry on Regular expressions at Technical Interview Patterns. Probably the most popular interv … more →