tango.text.Ascii 翻译

tango.text.Ascii(r4792)

License:

BSD style: see license.txt

Version:

Dec 2006: Initial release

Author:

Kris

对一个ASCII实用程序的选择对象预留位置(Placeholder)。这些通常不和utf8工作,并且不能被轻易地扩展到utf16utf32

char[] toLower(char[] src, char[] dst = null) #
转为小写。返回在 dst中的转化内容,如果 dst为空就执行一个原状( in-place)转换。
char[] toUpper(char[] src, char[] dst = null) #
转为大写。返回在 dst中的转化内容,如果 dst为空就执行一个原状( in-place)转换。
int icompare(char[] s1, char[] s2) #
比较两个 char[],忽略大小写。如果相等返回 0
int compare(char[] s1, char[] s2) #
比较两个 char[],区分大小写。如果相等返回 0
int isearch(in char[] src, in char[] pattern) [static] #
返回 src中的文字模式的索引位置,失败时返回 src.length。这是大小写不敏感的搜索(感谢 Nietsnie)。

Copyright (c) 2006 Kris Bell. All rights reserved :: Generated by dil on Fri Jul 17 06:20:00 2009. Rendered by kandil.

你可能感兴趣的:(C++,c,工作,C#)