判断邮箱格式和图片压缩

1.判断邮箱格式

-(BOOL)isValidateEmail:(NSString *)email

{

NSString *emailRegex [email protected]"[A-Z0-9a-z._%+-][email protected][A-Za-

z0-9.-]+\\.[A-Za-z]{2,4}";

NSPredicate *emailTest = [NSPredicate

predicateWithFormat:@"SELF MATCHES%@",emailRegex];

return[emailTest evaluateWithObject:email];

}

2.图片压缩

UIImage *yourImage= [selfimageWithImageSimple:image

scaledToSize:CGSizeMake(210.0, 210.0)];

- (UIImage*)imageWithImageSimple:(UIImage*)image

scaledToSize:(CGSize)newSize

{

Tell the old image to draw in this newcontext, with

the desired

new size

[image

drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];

Get the new image from the context

UIImage* newImage =

UIGraphicsGetImageFromCurrentImageContext();

Create a graphics image context

UIGraphicsBeginImageContext(newSize);

End the context

UIGraphicsEndImageContext();

Return the new image.

returnnewImage;

}

时间: 2024-10-07 23:58:19

判断邮箱格式和图片压缩的相关文章

判断 邮箱格式是否正确

练习:判断邮箱格式是否正确1.有且只能有一个@2.不能以@开头[email protected]之后至少有一个.[email protected]和.不能靠在一起5.不能以.结尾 1 Console.Write("请输入邮箱地址:"); 2 string m = Console.ReadLine(); 3 if (m.IndexOf("@") == m.LastIndexOf("@")) 4 { 5 if (m.IndexOf("@&q

判断邮箱 格式是否正确

/练习:判断邮箱格式是否正确 //1.有且只能有一个@ contains @ indexof @=lastindexof //2.不能以@开头 indexof != 0 //[email protected]之后至少有一个. //[email protected]和.不能靠在一起 //5.不能以.结尾 Console.Write("请输入您的邮箱:"); string s = Console.ReadLine(); if(s.Contains("@")==true)

3月12日 判断邮箱格式是否正确

//练习:判断邮箱格式是否正确 //1.有且只能有一个@ //2.不能以@开头 //[email protected]之后至少有一个. //[email protected]和.不能靠在一起 //5.不能以.结尾 Console.Write("请输入您的邮箱账号"); string mail = Console.ReadLine(); bool a = mail.Contains("@"); if (a == true) { int b = mail.IndexOf

iOS开发——判断邮箱格式

//判断邮箱格式 -(BOOL)isValidateEmail:(NSString *)email { NSString *emailRegex = @"[A-Z0-9a-z._%+-][email protected][A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"; NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES%@",emailRegex]; ret

Js使用正则表达式判断邮箱格式

1 <html> 2 <head> 3 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 4 <title>验证Email是否正确</title> 5 <script language="javascript"> 6 function checkemail(str){ 7 //在Jav

Java编程练习之判断Java文件名是否正确,判断邮箱格式是否正确和统计指定字符串中某字符现的次数

一判断Java文件名是否正确,判断邮箱格式是否正确 功能:判断Java文件名是否正确,判断邮箱格式是否正确.其中:合法的文件名应该以.java结尾:合法的邮箱名 中至少要包含 "@" , 并要求 "@" 在 "." 之前. 练习代码: public class Test { public static void main(String[] args) { //Java文件名 String fileName = "HelloWorld.j

ORACLE中使用SQL的正则表达式判断邮箱格式

在数据库中,有时需要判断字符串是否是一个或者多个邮箱格式,可以使用如下语句判断: SELECT COUNT(1) FROM dual WHERE regexp_like(v_mail,'^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+(;{1,1}\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+)*$') 代码中v_

jquery判断邮箱格式问题

方法一: var search_str = /^[\w\-\.][email protected][\w\-\.]+(\.\w+)+$/; var email_val = $("#Email").val(); if(!search_str.test(email_val)){ alert("please input right email !"); $('#Email').focus(); return false; } 方法二: ar mail = $('#mail

判断邮箱格式是否正确

// 是否是 合法邮箱 BOOL IsValidEmail(const CString strEmail) { if( strEmail.GetLength() < 5 ) //26个小写字母 { return FALSE; } char ch; int atCount =0; int atPos = 0; int dotCount = 0; for(int i=0; i<strEmail.GetLength(); i++) // 从0 开始判断 { ch = strEmail[i]; if(