C crpp7001 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-22 #1 如何判断一个字符串是否是一个电子邮箱的格式:如fjskigiwagf.gksa是不是电子邮箱格式 *@.* 如何判断一个字符串是不是全是空格,不是空值,如‘ ’里面就有几个空格,
T twos Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-22 #2 pos('@',astring) =0不合法 =length(astring)不合法 粗略的就是这样 空格的个数 cnt:=0; for i:=1 to length(astring) do if astring=#32 then inc(cnt);
pos('@',astring) =0不合法 =length(astring)不合法 粗略的就是这样 空格的个数 cnt:=0; for i:=1 to length(astring) do if astring=#32 then inc(cnt);
S svw0506 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-22 #3 if pos('@',SourceString)=0 then //邮箱格式不合法 if Length(SourceString)<>0 and Length(Trim(SourceString))=0 then //是空格,但不是空值
if pos('@',SourceString)=0 then //邮箱格式不合法 if Length(SourceString)<>0 and Length(Trim(SourceString))=0 then //是空格,但不是空值