C# Класс Spring.Util.PatternMatchUtils

Utility methods for simple pattern matching, in particular for Spring's typical "xxx*", "*xxx" and "*xxx*" pattern styles.
Показать файл Открыть проект

Открытые методы

Метод Описание
SimpleMatch ( System pattern, System str ) : bool

Match a String against the given pattern, supporting the following simple pattern styles: "xxx*", "*xxx" and "*xxx*" matches, as well as direct equality.

Описание методов

SimpleMatch() публичный статический Метод

Match a String against the given pattern, supporting the following simple pattern styles: "xxx*", "*xxx" and "*xxx*" matches, as well as direct equality.
public static SimpleMatch ( System pattern, System str ) : bool
pattern System the pattern to match against ///
str System the String to match ///
Результат bool