美文网首页关于iOS
判断字符串是汉字还是字母

判断字符串是汉字还是字母

作者: 安然slience | 来源:发表于2015-12-17 17:46 被阅读172次

    很多时候我们需要保证用户输入的内容是汉字,这个时候需要判断用户输入的内容

    //如果输入的内容是字母,判断是否合格       

     if(self.nickNameText){            

    for (int i=0; i8){

    UIAlertView *alertView=[[UIAlertViewalloc]initWithTitle:@"不要输入低于2个或者高于8个" message:@"您输入的内容格式有误,请重新输入" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定",nil];

    [alertView show];

    return;

    }

    }else if(strlen(cString)==1)

    {

    NSLog(@"内容是字母");

    if(self.nickNameText.length<4||self.nickNameText.length>16){

    UIAlertView *alertView=[[UIAlertViewalloc]initWithTitle:@"不要输入低于4个或者高于16个" message:@"您输入的内容格式有误"delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];

    [alertView show];

    return;

    }

    }

    }

    }

    相关文章

      网友评论

        本文标题:判断字符串是汉字还是字母

        本文链接:https://www.haomeiwen.com/subject/ijjphttx.html