字串操作的常用方法 2

2021-04-19 20:54:25 字數 3377 閱讀 7151

1、datetime 數字型

system.datetime currenttime=new system.datetime();

1.1 取當前年月日時分秒

currenttime=system.datetime.now;

1.2 取當前年

int 年=currenttime.year;

1.3 取當前月

int 月=currenttime.month;

1.4 取當前日

int 日=currenttime.day;

1.5 取當前時

int 時=currenttime.hour;

1.6 取當前分

int 分=currenttime.minute;

1.7 取當前秒

int 秒=currenttime.second;

1.8 取當前毫秒

int 毫秒=currenttime.millisecond;

(變數可用中文)

1.9 取中文日期顯示――年月日時分

string stry=currenttime.tostring("f"); //不顯示秒

1.10 取中文日期顯示_年月

string strym=currenttime.tostring("y");

1.11 取中文日期顯示_月日

string strmd=currenttime.tostring("m");

1.12 取中文年月日

string strymd=currenttime.tostring("d");

1.13 取當前時分,格式為:14:24

string strt=currenttime.tostring("t");

1.14 取當前時間,格式為:2003-09-23t14:46:48

string strt=currenttime.tostring("s");

1.15 取當前時間,格式為:2003-09-23 14:48:30z

string strt=currenttime.tostring("u");

1.16 取當前時間,格式為:2003-09-23 14:48

string strt=currenttime.tostring("g");

1.17 取當前時間,格式為:tue, 23 sep 2003 14:52:40 gmt

string strt=currenttime.tostring("r");

1.18獲得當前時間 n 天後的日期時間

datetime newday = datetime.now.adddays(100);

2、int32.parse(變數) int32.parse("常量")

字元型轉換 轉為32位數字型

3、 變數.tostring()

字元型轉換 轉為字串

12345.tostring("n"); //生成 12,345.00

12345.tostring("c"); //生成 ¥12,345.00

12345.tostring("e"); //生成 1.234500e+004

12345.tostring("f4"); //生成 12345.0000

12345.tostring("x"); //生成 3039 (16進製制)

12345.tostring("p"); //生成 1,234,500.00%

4、變數.length 數字型

取字串長度:

如: string str="中國";

int len = str.length ; //len是自定義變數, str是求測的字串的變數名

5、system.text.encoding.default.getbytes(變數)

字碼轉換 轉為比**

如:byte bytstr = system.text.encoding.default.getbytes(str);

然後可得到位元長度:

len = bytstr.length;

6、system.text.stringbuilder("")

字串相加,(+號是不是也一樣?)

如:system.text.stringbuilder sb = new system.text.stringbuilder("");

7、變數.substring(引數1,引數2);

擷取字串的一部分,引數1為左起始位數,引數2為擷取幾位。

如:string s1 = str.substring(0,2);

8、string user_ip=request.servervariables["remote_addr"].tostring();

取遠端使用者ip位址

if(request.servervariables["http_via"]!=null)else , 但還有別的方法:

(1)、

string str1; str2

//語法: str1.endswith(str2); __檢測字串str1是否以字串str2結尾,返回布林值.如:

if(str1.endswith(str2))

(2)、

//語法:str1.equals(str2); __檢測字串str1是否與字串str2相等,返回布林值,用法同上.

(3)、

//語法 equals(str1,str2); __檢測字串str1是否與字串str2相等,返回布林值,用法同上.

24、indexof() 、lastindexof()

查詢字串中指定字元或字串首次(最後一次)出現的位置,返回索引值,如:

str1.indexof("字"); //查詢「字」在str1中的索引值(位置)

str1.indexof("字串");//查詢「字串」的第乙個字元在str1中的索引值(位置)

str1.indexof("字串",3,2);//從str1第4個字元起,查詢2個字元,查詢「字串」的第乙個字元在str1中的索引值(位置)

25、insert()

在字串中指定索引位插入指定字元。如:

str1.insert(1,"字");在str1的第二個字元處插入「字」,如果str1="中國",插入後為「中字國」;

26、padleft()、padright()

在字串左(或右)加空格或指定char字元,使字串達到指定長度,如:

string str1="中國人";

str1=str1.padleft(10,'1'); //無第二引數為加空格

response.write(str1); //結果為「1111111中國人」 , 字串長為10

27、remove()

從指定位置開始刪除指定數的字元

string str1="我是薩達姆的崇拜者之一";

response.write(str1.remove(5,4)); //結果為「我是薩達姆之一」

字串的常用操作方法

join 字串拼接 語法 拼接符 join 拼接的資料 將字串 元組 列表中的元素以指定的字元 拼接符 連線生成乙個新的字串 列 a 1 2 3 4 5 join a 1 2 3 4 5 jion a 1 2 3 4 5 join a 1.2.3.4.5 find 找到元素的位置 語法 str.fi...

字串常用操作。。。

include include include char itoa int value result char malloc sizeof char i 1 for j 0 jint i 65 char p itoa i printf s n p free p p null include incl...

字串常用操作

coding utf 8 import string1 判斷str unicode字串物件 def isastring anobj return isinstance anobj,basestring basesting是str,unicode的父類 defisaint anobj return i...