Refactor
:my
=>
'code'
Codes
Refactorings
Popular
Best
Submit
Spam
Account
Logout
Login
JavaScript doesn't seem to be activated, expect things to be ugly and sloppy!
Learn How to Create Your Own Programming Language
createyourproglang.com
Recent
How to get accepted in Fileice (200% Working) 22/2012
Premium Account
FILE HOSTS PREMIUM ACCOUNT
ALL FILE HOST PREMIUM ACCOUNTS
Zynga Slingo Trainer v5.12
iTunes Gift Card Generator V3.1 2012
Diablo 3 GOLD Coins FREE
Working PS3 Jailbreak 3.65 And 3.66
ExtaBit Premium Accounts and Cookies
Steam Wallet Hack - Money Adder & Hack v3
Popular
XBOX POINTS GENERATOR - MICROSOFT POINTS GENERATOR v1.2012
11 may 2012 premium uploading accounts 100% working
Free Microsoft Points
Free Microsoft Points - Microsoft Points Generator - Xbox Live Codes 2012
Car Town Free Blue Points Hack
Free CarTown Blue Points Generator and CarTown Templates
Better way to get content via jQuery $.get()
Free Microsoft Points
Simple Days Purger
Sharecash Downloader Bypass Surveys New 05/2012
Pastable version of
Email addresses validator
<pre class='prettyprint' language='java'>import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class Validator { private static final String ORG_FILE = "org.txt"; private static final String NEW_FILE = "new.txt"; public static void main(String[] args) throws IOException { filterEmailsFile(); } private static void filterEmailsFile() throws IOException { File file = new File(ORG_FILE); BufferedReader in = new BufferedReader(new FileReader(file)); try { PrintWriter pw = new PrintWriter(new FileWriter(NEW_FILE)); List<String> emails = new ArrayList<String>(); try { EmailValidator emailValidator = new EmailValidator(); while (true) { String email = in.readLine(); if (email == null) break; email = email.replaceAll("\\s", ""); if (emailValidator.isValid(email)) emails.add(email); } Collections.sort(emails); for (String email : emails) { pw.println(email); } } finally { pw.close(); } } finally { in.close(); } } } =========================================================================== import java.util.regex.Pattern; public class EmailValidator { private final Pattern pattern; public EmailValidator(){ pattern = Pattern.compile("^\\w+(\\.\\w+)*@\\w+(\\.\\w+)*\\.\\p{Alpha}+$"); } public boolean isValid(String email) { return pattern.matcher(email).matches(); } }</pre> <a href="http://www.refactormycode.com/codes/73-email-addresses-validator" style="color:#fff" title="As seen on RefactorMyCode.com"><img alt="Small_logo" src="http://www.refactormycode.com/images/small_logo.gif" style="border:0" /></a>