c#判斷判斷字符串是否由數字構成


調用方法

private bool isNoNumber(string bankAccount)
{

判斷字符串中是否有空格
if (bankAccount.IndexOf(" ") >= 0)
{

去除字符串中空格
string trim = Regex.Replace(bankAccount, @"\s", "");
if (Regex.IsMatch(trim, @"^\d+$"))
{
return false;--這里是數字組成,但我返回的是false
}
else
{
return true;--不是數字組成,我返回的true
}
}
else {
if (Regex.IsMatch(bankAccount, @"^\d+$"))
{
return false;
}
else
{
return true;
}
}

}

 1 private bool isNoNumber(string bankAccount)
 2         {
 3             if (bankAccount.IndexOf(" ") >= 0)
 4             {
 5                 string trim = Regex.Replace(bankAccount, @"\s", "");
 6                 if (Regex.IsMatch(trim, @"^\d+$"))
 7                 {
 8                     return false;
 9                 }
10                 else
11                 {
12                     return true;
13                 }
14             }
15             else {
16                 if (Regex.IsMatch(bankAccount, @"^\d+$"))
17                 {
18                     return false;
19                 }
20                 else
21                 {
22                     return true;
23                 }
24             }
25 
26         }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM