VariableKeywordMatcher is a C# library offering several string-keyword matchers, they allow you match keyword by Initials\Chinese PinYin(plugin needed)\Japanese Romaji(plugin needed)... You can get the keyword hit position that allow you to highlight the matched words.
VariableKeywordMatcher.Provider.JapaneseRomaji is the Japanese Romaji matcher(plugin) for VariableKeywordMatcher or VariableKeywordMatcherIn1. e.g. "konni" will hit "こんにちは".
A tiny package for one call password hash (sha2) generator and matcher. Simple Do
var h = new Hasher();
var hash = h.getHash("abcd");
var salt = h.Salt;
Now you can store salt and hash. To match simply do:
var h2 = new Hasher(salt);
h2.match(stringToCheck, hash); // returns true or false
VariableKeywordMatcher.Provider.JapaneseRomaji is the Chinese PinYin Initials matcherVariableKeywordMatcher(plugin) for VariableKeywordMatcher.
e.g. "NH" will hit "你好".
VariableKeywordMatcherIn1 is a C# library offering several string-keyword matchers(English + PinYin), they allow you match keyword by Initials\Chinese PinYin\Japanese Romaji(plug-in needed)... You can get the keyword hit position that allow you to highlight the matched words.
The library allows you to match a URL to a pattern.
How it works - we break the url pattern into parts And we match each non-empty part with a similar one from the URL.
You can specify Wildcard: * or ~
Where * is any character set within the group (schema, host, port, path,...
More information