// Check to make sure value is non-null and matches CSS grammar
// A property may contain more than one class name so we need to
// check each potential class name in the string.
...

Java Validate CSS classnames in ...

by Zack The Human, July 23, 2010 17:08, 2 refactorings, tagged with string, regex, foreach

I have a map of strings whe...

05a80d2c7b26a787f4f1742644f76054 Talk
String className = file.getAbsolutePath();

/* TODO, replace this with regex is possible */
...

Java replace with regex

by mikenereson.blogspot.com, August 07, 2009 13:34, 4 refactorings, tagged with regex

Can this be refactored to u...

9db8f865b1d5f3e3978b37e7a3480cc4 Talk
package ircbot;

/**
...

Java Java IRC Bot

by Ishkur, September 13, 2008 06:04, 4 refactorings, tagged with regex, java, IRC bot

I've been working on this f...

6dc0e9a07bcff97ac9b111f36e12f1f6 Talk