正则表达式
public
class
RegexTrie
extends Object
java.lang.Object 中 | |
↳ | com.android.tradefed.util.RegexTrie<V> |
RegexTrie 是一个 trie,其中键的每个ERROR(/Pattern)
。因此,完整的存储键是 List<Pattern>
,List<String>
不同。请注意,
retrieve(String)
方法将与 Pattern
逐点匹配,
而不是像标准 trie 那样检查点相等性。因此,
在大型数据集中的表现不佳。
您还可以使用 Pattern
序列中的 null
条目充当通配符。如果
某个 null
时,序列中的所有后续条目都将被忽略。
当检索代码遇到 null
Pattern
时,它会首先等待以查看
更加具体的条目与该序列匹配。如果有,更具体的条目将继续进行,
即使之后匹配失败也是如此。
如果没有更具体的条目匹配,通配符匹配将添加所有剩余的 String
附加到捕获列表(如果启用),并返回与通配符关联的值。
通配符功能的简短示例如下:
List<List<String>> captures = new LinkedList<List<String>>(); RegexTrie<Integer> trie = new RegexTrie<Integer>(); trie.put(2, "a", null); trie.put(4, "a", "b"); trie.retrieve(captures, "a", "c", "e"); // returns 2. captures is now [[], ["c"], ["e"]] trie.retrieve(captures, "a", "b"); // returns 4. captures is now [[], []] trie.retrieve(captures, "a", "b", "c"); // returns null. captures is now [[], []]
摘要
公共构造函数 | |
---|---|
RegexTrie()
|
公共方法 | |
---|---|
void
|
clear()
|
V
|
put(V value, Pattern... patterns)
向 trie 添加一个条目。 |
V
|
retrieve(String... strings)
通过将提供的 |
V
|
retrieve(
通过将提供的 |
String
|
toString()
|
公共构造函数
正则表达式
public RegexTrie ()
公共方法
清除
public void clear ()
放置
public V put (V value, Pattern... patterns)
向 trie 添加一个条目。
参数 | |
---|---|
value |
V :要设置的值 |
patterns |
Pattern :必须依序匹配的 ERROR(/Pattern) 序列
检索关联的 value |
返回 | |
---|---|
V |
检索
public V retrieve (String... strings)
通过将提供的 String
序列与
trie 中存储的 ERROR(/Pattern)
序列。
参数 | |
---|---|
strings |
String :要匹配的一系列 String |
返回 | |
---|---|
V |
关联值,如果未找到值,则为 null |
检索
public V retrieve (captures, String... strings)
通过将提供的 String
序列与
trie 中存储的 ERROR(/Pattern)
序列。此版本的方法还会返回
每个匹配的 ERROR(/Pattern)
的捕获组 ERROR(/List)
。
外部 List 中的每个条目对应于 trie 中的一个 Pattern
级别。
对于每个级别,系统都会存储捕获组的列表。如果没有拍摄内容
对于特定关卡,系统将会存储一个空列表。
请注意,在检索开始之前,captures
将被 ERROR(/List#clear())
处理。
此外,如果在完成部分匹配序列后检索失败,captures
将
仍然会反映部分匹配的捕获组。
参数 | |
---|---|
captures |
:一个 List<List<String>> ,通过它返回拍摄组。 |
strings |
String :要匹配的一系列 String |
返回 | |
---|---|
V |
关联值,如果未找到值,则为 null |
toString
public String toString ()
返回 | |
---|---|
String |