Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9211691
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T01:21:18+00:00 2026-06-18T01:21:18+00:00

I have a UITextField called textfield. And I have this code to check if

  • 0

I have a UITextField called textfield. And I have this code to check if the text in the textfield is equal to “exampletext”

if ([textfield.text isEqualToString:@"exampletext"]) {
    NSLog(@"Correct");
} else {
    NSLog(@"Wrong");
}

But I also want to check if the text in the textfield is almost equal to “exampletext”, if the text is almost the same as “exampletext”. Like if the text was “eampletex” I want to NSLog(@”Close”)

Are there any ways to check if the textfield text is like 50% equal to “exampletext”?
Or any ways to check if the textfield text has 50% the same characters as “exampletext”?
Or something else like that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T01:21:19+00:00Added an answer on June 18, 2026 at 1:21 am

    Here’s my go at it. Create a custom character set from the string you want to match. Check each character in the texfield.text against that character set, and if the number of matches is close to the number of letters in the string, do something..

    NSString *testString = @"wordToCompare";
    NSString *textFromTextfield = textfield.text;
    
    //create a custom character set from the word you want to compare to...
    NSCharacterSet *characterSetForString = [NSCharacterSet characterSetWithCharactersInString:testString];
    
    //keep track of how many matches...
    int numberOfCharsThatMatchSet = 0;
    
        for (int x = 0; x < [textFromTextField length]; x++) {
    
            unichar charToCheck = [textFromTextField characterAtIndex:x];
    
            if ([characterSetForString characterIsMember:charToCheck] == YES) {
                numberOfCharsThatMatchSet++;
            }
    
            NSLog(@"%d", numberOfCharsThatMatchSet);
        }
    
             // if the number of matches is the same as the length of the word + or - 2...
        if ((numberOfCharsThatMatchSet > [testString length] - 2 ) && (numberOfCharsThatMatchSet < [testString length] + 2 )) {
            NSLog(@"close match...");
        }
    

    Not sure if this is 100% what you’re looking for, but maybe it will help anyway…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method, -(void)validateFormInput:(UITextField *)textField that gets called when the form's submit button
Say, I have an address bar which is a UITextField called textField, and a
i have uitextfield i wan that it should start entering text from top instead
I have this problem with my code, I am trying to add textfields to
I have a UIViewController called LoginViewController. The UIViewController has two UITextField, username and password.
I have a simple UITextField called month where I get users to simply enter
I have a DetailViewController , which implementation file contains this code: #import <UIKit/UIKit.h> @interface
In viewDidLoad I check if two UITextFields have a valid input (text length >
Let's say I have the following code: IBOutlet UITextField* nameTextField; IBOutlet UILabel* greetingLabel; I'd
I have UITextField in each Cell of UITableview and I have added UIPickerview as

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.