c 判斷email位址是否為合法

2022-09-26 05:45:09 字數 809 閱讀 5975

題目要求:

關鍵**如下所示:

class program

{static void main(string args)

{aflqxmcpqx

console.writeline("請輸入正確的郵箱位址,以 @sina.com 結尾");

string us =convert.tostring(console.readline());

string str1 = us.replace("@", "");

int count = us.length - str1.length;

string str2 = us.replace(".", "");

int count2 = us.length - str2.length;

int count3 = us.length - 1;

int xl=us.indexof(".")-us.indexof("@");

bool mw aflqxmcpqx= (us.indexof("@sina.com") == (us.length-9));

while (count == 1 && count2 == 1 && us.indexof("@") > 0 && us.i程式設計客棧ndexof(".") > us.indexof("@")

&& us.indexof(".")

以上所述是小編給大家介紹的c#判斷email位址是否為合法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回覆大家的。在此也非常感謝大家對我們**的支援!

本文位址: /ruanjian/csharp/157621.html

c 判斷IP位址是否合法

以字串形式輸入n行ip位址,格式為a.b.c.d,每個數字均在 0,255 之間,判斷ip位址是否合法,是輸出yes,否輸出no。輸入樣例 21.2.3.4 172.168.0.300 輸出樣例 yesno 注意 string轉int需要標頭檔案 include include using name...

判斷手機和Email是否合法

1 public static boolean isemail string stremail 1 public static boolean iscellphonenumber string strnumber else if strnumber.startswith 0086 7pattern ...

判斷IP位址是否合法

1 字串切割判斷 def legalip ip ip ip.split m len ip if m 4or not ip 0 isdigit orint ip 0 0or int ip 0 255 print illegal else for i in range 1 m if ip i isdig...