1using
system;23
namespace
sam.oa.common425
///26
///處理字串
27///
28///
字串29
///30
public
static
string processstring(object
obj)
3134
///35
///判斷字串是否為日期
36///
37///
日期字串
38///
39public
static
bool objectisdate(object
strdate)
4046
catch
4750}51
///52
///判斷字串是否為decimal
53///
54///
55///
56public
static
bool isdecimal(object
obj)
5763
catch
6467}68
///69
///物件是否為null並返回三元運算子值
70///
71///
物件72
///73
public
static
string objectisnull(string
obj)
7479
catch
(exception ex)
8083}84
///85
///物件是否為空並返回三元運算子值
86///
87///
物件88
///89
public
static
string objectisblank(string
obj)
9095
catch
(exception ex)
9699
}100
///101
///物件是否為decimal並返回三元運算子值
102///
103///
物件104
///105
public
static
decimal objectisdecimal(object
obj)
106111
catch
(exception ex)
112115
}116
///117
///獲取當前月的第一天
118///
119///
120public
static
datetime getfirstdaycurrentmonth()
121126
catch
(exception ex)
127130
}131
///132
///獲取當前月的最後一天
133///
134///
135public
static
datetime getlastdaycurrentmonth()
136141
catch
(exception ex)
142145
}146
///147
///獲取指定日期,在為一年中為第幾周
148///
149///
指定時間
150///
返回第幾周,1-52周
151private
static
intgetweekofyear(datetime dtweek)
152157
///158
///計算某日起始日期(禮拜一的日期)
159///
160///該週中任意一天
161///返回禮拜一日期,無時分秒
162public
static
string
getmondaydate(datetime somedate)
163169
///170
///計算某日結束日期(禮拜日的日期)
171///
172///該週中任意一天
173///返回禮拜日日期,無時分秒
174public
static
string
getsundaydate(datetime somedate)
175181
///182
///獲取某月的天數
183///
184///
日期185
///當月的天數
186public
static
intgetdaysinmonth(datetime somedate)
187190
}191 }
String字串類實現
1 class string 2 建構函式string string const char str else string str hell0 3 析構函式string string 4 拷貝構造string string const string other string s1 hello str...
關於字串 string類
1 字串 字串是儲存在記憶體的連續位元組中的一系列字元。儲存在連續位元組中的一系列字元意味著可以將字串儲存在char陣列中,其中每個字元都位於自己的陣列元素中。什麼時候char陣列是string型別?char dog 8 not a string char cat 8 a string 只有第二個陣...
字串工具類
字串工具類 author administrator public class djystringutils 判斷字串是否不為空 param str 字串 return 是否不為空 public static boolean isnotempty string str 截斷字串兩側的逗號 param...