Subscribe

Topic: Regular Expression

New with Topic: Regular Expression


Joe Drumgoole
Joe Drumgoole posted a tweet
Super cool regular expression tool http://www.gskinner.com/RegExr/ (via makeuseof.com)
 
Vaudaux
Vaudaux bookmarked a link
Grandir : la nouvelle
RT @julienrayneau: Edito interessant sur La tribune à propos des sociétés internets http://bit.ly/6wt1tR [from http://twitter.com/hvaudaux/statuses/6526421725]
 
Tyler
Tyler posted a tweet
ok fixed regular expression to match urls. I also changed url of razzle dazzle to http://tweetbook.h... http://bit.ly/7QRIfu
 
Rocky1138
Rocky1138 posted a tweet
Easy-to-use regular expression to validate E-Mail addresses (*snicker*) http://tinyurl.com/yaxmmah
 
Yanesh Tyagi
Yanesh Tyagi posted a tweet
Regular expression search and replace for Windows - #grepwin from tortoise svn. http://tools.tortoisesvn.net/grepWin @myEN
 
Peteris Krumins
Peteris Krumins posted a blog entry
Recursive Regular Expressions
The regular expressions we use in our daily lives are actually not that “regular.” Most of the languages support...
 
Premasagar
Premasagar bookmarked a link
RegExr: Online Regular Expression Testing Tool
Tool for debugging, testing and exploring regular expressions.
 
Debiprasad
Debiprasad posted a tweet
What's the best regular expression for email address? Many developers use different RE for this, what do you prefer?
 
joy
joy posted a blog entry
My Recent Tweets 20091120
프로그래밍programming RT programmingjoy: LtU: Scratch: Programming for All #programming http://bit.ly/1FZc4P #...
 
Ronsen
Ronsen bookmarked a link
10 Java Regular Expression Examples You Should Know
Regular expression is an art of the programing, it’s hard to debug , learn and understand, but the powerful features are still attract many developers to code regular expression. Let’s explore the following 10 practical regular expression
 
<em>kurinchiblogger</em>
kurinchiblogger posted a blog entry
GUID: Meaning and its application
GUID stands for “Global Unique Identifier” and is a term usually referring to Microsoft’s implementation of...
 
parachaz
parachaz posted a blog entry
How to validate date using Java regular expression
My earlier post on how to validate email address, SSN and phone number validation using Java regex still attracts lot of...
31 days ago zParacha | Topics: Java, RegEx, Regular...
 
mkyong
mkyong posted a blog entry
How to validate date with regular expression
Date Format (dd/mm/yyyy) Regular Expression...
32 days ago Programmer Life | Topics: Regular..., Regular...
 
kat_irl
kat_irl posted a tweet
RT @klmr Epic wisdom: “never bring a regular expression knife to a turing complete gunfight” – http://tr.im/F3yT - LOL!
 
mkyong
mkyong posted a blog entry
How to validate Time in 24 Hours format with regular expression
Time in 24-Hour Format Regular Expression...
32 days ago Programmer Life | Topics: Regular..., Regular...
 
mkyong
mkyong posted a blog entry
How to validate Time in 12 Hours format with regular expression
Time in 12-Hour Format Regular Expression...
32 days ago Programmer Life | Topics: Regular..., Regular...
 
snowalker
snowalker posted a blog entry
Find and Replace code using Wild cards in Dreamweaver
Let’s say, you are in a common situation when you have to search and replace some links in hundred or even thousand of...
 
teerapap
teerapap posted a blog entry
URL Regular Expression Pattern
Tonight I search for a regex pattern to parsing ftp or http url. I found some but I choose Ivan's pattern and then I modify it...
33 days ago teerapap in english | Topics: regular...
 
mkyong
mkyong posted a blog entry
41 days ago Programmer Life | Topics: Regular..., Regular...
 
mkyong
mkyong posted a blog entry
48 days ago Programmer Life | Topics: Regular..., email, Regular...
 
BB
BB posted a tweet
Handy: Regular Expression Cheatsheet http://bit.ly/G2TDG
 
mkyong
mkyong posted a blog entry
How to validate Hex color code with regular expression
Hexadecimal Color Code Regular Expression Pattern^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$Description^ – Beginning of...
56 days ago Programmer Life | Topics: Regular..., Regular...
 
mkyong
mkyong posted a blog entry
How to validate image file extension with regular expression
Image File Extension Regular Expression Pattern([^\s]+(\.(?i)(jpg|png|gif|bmp))$)Description\s –...
59 days ago Programmer Life | Topics: Regular..., Regular...
 
mkyong
mkyong posted a blog entry
How to validate password with regular expression
Password Regular Expression Pattern((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%]).{6,20})Description?= – means apply...
63 days ago Programmer Life | Topics: Regular..., Regular...
 
mkyong
mkyong posted a blog entry
How to validate username with regular expression
Username Regular Expression Pattern ^[a-z0-9_-]{3,15}$Description1) ^ – Beginning of the...
67 days ago Programmer Life | Topics: Regular..., Regular...