Entitled “Lazy Linux: 10 essential tricks for admins“, this is a pretty good set of essential commands for *nix administrators. If I have to suggest anything for in-depth study, it’s… more →
*nix Shellalikates wrote 1 month ago: I have found this regular expression to be usefull // Regex for parsing URIs. var HTTP_URI_RE = /^( … more →
r4ccoon wrote 1 month ago: preg_match_all("#(\w+)=\[(.*?)\]#s", $param_line, $matches); sample string = {gallery width=[129] u … more →
firmit wrote 1 month ago: Oh – the possibilities! sed, grep and a lot of editors support the use of regexp. It’s a … more →
FreePunch wrote 1 month ago: Function rgxEmail(email) Dim regEx, Match, Matches If email <> “” Then Set regEx = … more →
Eyal Schneider wrote 1 month ago: Java introduced the java.util.regex package in version 1.4. It is a powerful addition, and yet, one … more →
vx wrote 1 month ago: to see large version, right click save as image … more →
r4ccoon wrote 2 months ago: Regular expressions (or regex) are a powerful way to traverse large strings in order to find informa … more →
ywarnier wrote 2 months ago: I have a list of e-mails that I extracted from MySQL as something like this: name@example.com fi … more →
ywarnier wrote 2 months ago: I have a list of e-mails that I extracted from MySQL as something like this: name@example.com firstn … more →
chrisgralike wrote 2 months ago: And even the title is catchy Trying to read all the regexp complexity behind a “Email” … more →
Dmitry Duka wrote 2 months ago: Recently, I’ve read Chris Harrison’s page about Amazon Book Map. He had dataset from Aar … more →
r4ccoon wrote 3 months ago: ^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}| … more →
teofilachirei wrote 4 months ago: The Link Extractor module Our simple focused crawler has a downloader and an URL queue. But it … more →
ivan wrote 5 months ago: In my last tech post, I started explaining my process for creating these word clouds. Wordle does a … more →
manikandanmv wrote 8 months ago: Search a pattern in strings using regular expression method match. Lets see methods startswith and e … more →
edsyrett wrote 9 months ago: We have a whole bunch of stylesheets in our project. Unfortunately, our release build had the filen … more →
nsdevaraj wrote 10 months ago: The below function validates the email ID string using regular expression. private function validat … more →
unixshell wrote 11 months ago: Entitled “Lazy Linux: 10 essential tricks for admins“, this is a pretty good set of esse … more →
Naresh Khokhaneshiya wrote 12 months ago: You can use following function for validation of email using ActionScript 3.0 RegExp class. /** * @u … more →