将lambdaj与String.matches方法一起使用



如何使用lambdaj和String.matches方法过滤Collection<String>
我是lambdaj的新手,觉得自己很笨,因为给出的例子比这个更复杂。

如果可以使用having(on(...))构造,则调用可能如下所示:

select(collection, having( on(String.class).matches("f*") ))

但不幸的是,这是不可能的,因为String类是最终类,因此on(String.class)无法创建having匹配器所需的代理。

尽管hamcrest没有正则表达式匹配器,但您不必自己编写。网络提供了几种实现方式。我希望在一个现成的公共库中看到这样的匹配器,我可以简单地将其作为依赖项包括在内,而不必复制源代码。

如果你想过滤一个集合,你可以按照下面的描述进行:

@Test
public void test() {
    Collection<String> collection =  new ArrayList<String>();
    collection.add("foo");
    collection.add("bar");
    collection.add("foo");
    List<String> filtered = select(collection, having(on(String.class), equalTo("foo")));
    assertEquals(2, filtered.size());
}

这很有效,但我不高兴用这么多代码来替换一个简单的for循环。我更喜欢"filter"而不是"select",因为它使代码更简单,我认为更容易阅读。

  public Collection<String> search(String regex) {
    List<String> matches = filter(matches(regex), dictionary);
    return matches;
  }
  static class MatchesMatcher extends TypeSafeMatcher<String> {
    private String regex;
    MatchesMatcher(String regex) {
      this.regex = regex;
    }
    @Override
    public boolean matchesSafely(String string) {
      return string.matches(regex);
    }
    public void describeTo(Description description) {
      description.appendText("matches " + regex);
    }
  }
  @Factory
  public static Matcher<String> matches(String regex) {
    return new MatchesMatcher(regex);
  }

相关内容

  • 没有找到相关文章

最新更新