All pastes #63024 Raw Edit

smsie

public java v1 · immutable
#63024 ·published 2006-06-07 20:08 UTC
rendered paste body
public class Scratch {	public static void main(String[] args) {		Pattern p = Pattern.compile(".*\\[.*");		Matcher m = p.matcher("xxx[xxx");		boolean b = m.matches();		if (b)			System.out.println("Matched");		else			System.out.println("Not matched");	}}