1 /*2 * testRegexpSimple.java3 *4 * Created on January 24, 2005, 2:35 PM5 */6 7 package search_replace.SearchTest;8 9 /**10 *11 * @author rs15516112 */13 public class testRegexpSimple {14 15 /** Creates a new instance of testRegexpSimple */16 public testRegexpSimple() {17 /** Search for: [aA][hH][oO][jJ][0-9]{1,3}18 * aHoJ0 - ok19 * ahoj1 - ok20 * aHOJ2 - ok21 * Ahoj123 - ok22 * Ahojx - not ok23 * Ahoj4 - ok24 */25 }26 27 }28