1,連線字串的操作
<?
xml version="1.0" encoding="utf-8"
?>
<
configuration
>
<
connectionstrings
>
<
add
name
="connstring"
connectionstring
="localsqlserver: data source=127.0.0.1;integrated security=sspi;initial catalog=zjmo"
providername
="system.data.sqlclient"
/>
connectionstrings
>
<
>
<
add
key="defaultdatasource"
value
="user id=sa; password=sa; database=zjmo; server=.;"
/>
>
configuration
>
////
.net1.1
protected
static
string
connectionstring
=system.configuration.configurationmanager.connectionstrings[
"connstring
"].tostring();
class
classcheck
private
static
regex regnumber
=new
regex(
"^[0-9]+$
");
//數字
private
static
regex regnumbersign
=new
regex(
"^[+-]?[0-9]+$
");
//代正負號的數字
private
static
regex regdecimal
=new
regex(
"^[0-9]+[.]?[0-9]+$
");
//小數
private
static
regex regdecimalsign
=new
regex(
"^[+-]?[0-9]+[.]?[0-9]+$
");
//等價於^[+-]?\d+[.]?\d+$ 帶正負號的小數
private
static
regex regemail
=new
regex(
"^[\\w-]+@[\\w-]+\\.(com|net|org|edu|mil|tv|biz|info)$");
//w 英文本母或數字的字串,和 [a-za-z0-9] 語法一樣
private
static
regex regchzn
=new
regex(
"[\u4e00-\u9fa5]
");
//中文字
#region
是否數字字串
//////
是否數字字串
//////
輸入字串
///public
static
bool
isnumber(
string
inputdata)
#endregion
#region
是否數字字串 可帶正負號
//////
是否數字字串 可帶正負號
//////
輸入字串
///public
static
bool
isnumbersign(
string
inputdata)
#endregion
#region
是否是浮點數
//////
是否是浮點數
//////
輸入字串
///public
static
bool
isdecimal(
string
inputdata)
#endregion
#region
是否是浮點數 可帶正負號
//////
是否是浮點數 可帶正負號
//////
輸入字串
///public
static
bool
isdecimalsign(
string
inputdata)
#endregion
#region
檢測是否有中文字元
//////
檢測是否有中文字元
//////
///public
static
bool
ishaschzn(
string
inputdata)
#endregion
#region
檢查郵件位址
//////
是否是浮點數 可帶正負號
//////
輸入字串
///public
static
bool
isemail(
string
inputdata)
#endregion
#region
按要求長度擷取字串
//////
檢查字串最大長度,返回指定長度的串
//////
輸入字串
///最大長度
///public
static
string
supstringtext(
string
stringinput,
intmaxlength)
return
stringinput;
}#endregion
WinForm 開發C 學習筆記1
console.writeline hello world 它使用 console.writeline 方法列印此訊息。console 是表示控制台視窗的型別。writeline 是 console 型別的方法,負責將文字行列印到文字控制台。string afriend bill console.w...
Win Form學習記錄
屬性的意思,出現在下方的位置 見上面圖中標記的2 name 名稱 backcolor 背景色 maximizebox 最大化 按鈕是否存在 startposition 窗體的初始位置 text 窗體的名稱 topmost 當前窗體是否始終置於所有窗體最頂部 windowstate 窗體最初顯示的狀態...
C 學習筆記 winform和wpf 事件繫結理解
binding繫結機制其自身就維護者乙個繫結登錄檔,這個登錄檔中將源與目標一一對應了起來。target source。每當ui的屬性值發生改變時,wpf系統將會自動呼叫乙個全域性的委託事件處理函式,可能就是public event propertychangedeventhandler proper...