LinkShare_468x60v1

Tuesday, March 24, 2015

How to use Replace & ReplaceAll in Java

Replace character

String newstring = str1.replace("-",",");


Replace string

String newstring = str1.replaceAll("[a-z]","0");


Replace string only for first match

String newstring = str1.replaceFirst("[a-z]","0");

Tuesday, May 13, 2014

Validate Email Addresses With PHP preg_match



$email = "[email protected]"

preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", $email)

or

filter_var($email, FILTER_VALIDATE_EMAIL)

[Blog] Php is everything


Category
Information

URL
http://baiyuxiong.iteye.com/

Description
Php is everything...

[Blog] Shane Rutter's Blog



Category
Information

URL
http://shanerutter.co.uk/

Description
PHP PROGRAMMER AND WEBSITE DEVELOPER

[EMZ File Extension] How to open .emz files

File Extension
.emz

Description
A compressed graphics file used by the Microsoft Office Suite and Visio


How to open .emz files

Drag .emz file into word document and drop it.


[Software] FreeFileSync

Category
File Backup

Download
http://sourceforge.net/projects/freefilesync/

Review
You can Backup / Sync files, create a batch file for Windows Task Scheduler.

Wednesday, July 10, 2013

[WebSite Review] HTML5 Responsive Templates

http://html5up.net/

Great site. You can make Responsive pages with their html5 templates.