1. 程式人生 > 實用技巧 >常用功能程式碼收集

常用功能程式碼收集

=========================================================================================

檢查IP地址格式是否正確:

                Regex.IsMatch(ip, @"^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$");  //方式一
                IPAddress address;
                if (!IPAddress.TryParse(txtIP.Text, out
address)) //方式二 throw new Exception("IP地址格式不正確");

=========================================================================================

只允許文字框中輸入數字:

        private void txtNum_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar != 8 && !Char.IsDigit(e.KeyChar))
            {
                e.Handled 
= true; } }

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================