C# 클래스 Spring.Util.PatternMatchUtils

Utility methods for simple pattern matching, in particular for Spring's typical "xxx*", "*xxx" and "*xxx*" pattern styles.
파일 보기 프로젝트 열기: spring-projects/spring-net

공개 메소드들

메소드 설명
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