Spring Integration

org.springframework.integration.ip.util
Class RegexUtils

java.lang.Object
  extended by org.springframework.integration.ip.util.RegexUtils

public abstract class RegexUtils
extends Object

Regular Expression Utilities.

Author:
Gary Russell

Constructor Summary
RegexUtils()
           
 
Method Summary
static String escapeRegExSpecials(String stringToEscape)
          Escapes (precedes with \) any characters in the parameter in the set

.$[]^*+{}()\?
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RegexUtils

public RegexUtils()
Method Detail

escapeRegExSpecials

public static String escapeRegExSpecials(String stringToEscape)
Escapes (precedes with \) any characters in the parameter in the set

.$[]^*+{}()\?|

Used to escape a string that is used as a regular expression pattern, to remove the special meaning of these characters.

Parameters:
stringToEscape - The string to escape.
Returns:
The escaped string.

Spring Integration

Copyright © 2010. All Rights Reserved.