C# 클래스 SIL.Utils.Unicode

A collection of utility functions related to Unicode. See also CaseFunctions, Surrogates, IcuWrappers.
파일 보기 프로젝트 열기: sillsdev/FieldWorks

공개 메소드들

메소드 설명
CheckForNonAsciiCharacters ( string inputString ) : bool

Check for non-Ascii characters in a string. Returns 'true' if it finds any characters outside of the normal Ascii range.

RemoveNonAsciiCharsFromString ( string inputString ) : string

Removes any non-Ascii characters from a string. Returns the resulting string.

메소드 상세

CheckForNonAsciiCharacters() 공개 정적인 메소드

Check for non-Ascii characters in a string. Returns 'true' if it finds any characters outside of the normal Ascii range.
public static CheckForNonAsciiCharacters ( string inputString ) : bool
inputString string
리턴 bool

RemoveNonAsciiCharsFromString() 공개 정적인 메소드

Removes any non-Ascii characters from a string. Returns the resulting string.
public static RemoveNonAsciiCharsFromString ( string inputString ) : string
inputString string
리턴 string