matcher.setStringModes(StringMode.IgnoreSpace);
return this.assertThat("expect equal when ignore all space.", matcher);
}
public IStringAssert regular(String regex) {
Matcher matcher = new Matches(regex);
return (IStringAssert) this.assertThat(matcher);
}