Click or drag to resize
TrieSTValueKeysThatMatch Method
Returns all of the keys in the symbol table that match pattern, where . symbol is treated as a wildcard character.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public IEnumerable<string> KeysThatMatch(
	string pattern
)

Parameters

pattern
Type: SystemString
the pattern

Return Value

Type: IEnumerableString
all of the keys in the symbol table that match pattern as an iterable, where . is treated as a wildcard character.
See Also