107108109110111112113114
Matcher matcher = new Matches(regex); return (IStringAssert) this.assertThat(matcher); } public IStringAssert notBlank() { Matcher matcher = IsNot.not(new StringBlankMatcher()); return this.assertThat("expect string is blank", matcher); }