vote up 1 vote down star

How would I type up a code that searches through a text file from a given directory. I want the search word to be "password123" and if it contains that, then it will proceed onto the next step, if not it will give an error message.

flag

31% accept rate

3 Answers

vote up 1 vote down check

Try this function;

ETA

Okay, I'm an idiot and I typed in code without trying it out first.

This works. I've also got a simple Xcode project which works with this which you can download to try for yourself if I've typed anything wrong in here.

    // Get the URL for the Password.txt file on the desktop.
    NSURL *fileURL = [NSURL fileURLWithPath:[@"~/Desktop/Password.txt" stringByExpandingTildeInPath]];

    // Read the contents of the file into a string.
    NSError *error = nil;
    NSString *fileContentsString = [NSString stringWithContentsOfURL:fileURL 
                                                            encoding:NSUTF8StringEncoding 
                                                               error:&error];

    // Make sure that the file has been read, log an error if it hasn't.
    if (!fileContentsString) {
        NSLog(@"Error reading file");
    }

    // Create the string to search for
    NSString *password = @"Password123";

    // Search the file contents for the given string, put the results into an NSRange structure
    NSRange result = [fileContentsString rangeOfString:password];

    // -rangeOfString returns the location of the string NSRange.location or NSNotFound.
    if (result.location == NSNotFound) {
        // Password not found. Bail.
        NSLog(@"Password not found in file");
        return;
    }
    // Continue processing
    NSLog(@"Password found in file");    
}
link|flag
-rangeOfString always returns an NSRange struct, and the location of that range will be NSNotFound when no match found, not the return value itself. Also note that creating a string with +[NSString stringWithString:] does not make sense at all, because @"Password123" already is an NSString object. So it only makes a copy of it. – JoostK Oct 11 at 17:51
All good points. Corrected. Thanks. I was more worried about breaking it into lots of steps as an explanation. – Abizern Oct 11 at 17:59
Ok I get tons of errors when debugging this thing... What's the problem, someone can add it to their code, and they'll get like 15 errors.... – Kevin Oct 11 at 22:49
Ok never mind about the errors, since I just got rid of them, but whenever I try the code it doesn't seem to work... IT's suppose to give an alert if it worked or not, but nothing appears. There is also a warning right about where error:&error; is... – Kevin Oct 11 at 22:55
@Kevin. I've edited this out. I made some errors in typing the code straight in without testing it first. Sorry. – Abizern Oct 12 at 0:03
show 31 more comments
vote up 2 vote down

If you want to stick to Cocoa, then NSScanner is your friend.

If you don't bother using plain unix api, you can use:

int match = system("grep -q password123 pathToMyfile");

and check whether match is 0, in which case a match has been found.

link|flag
Oh cool, I'm just a bit confused of the coding, if the check is 0 how would I translate it into codes, if not then, "this will happen". (i'm sorry, im a beginner at Cocoa, and I'm still learning) – Kevin Oct 9 at 22:04
If you use system() call, you don't need Cocoa, you can use plain C: if (match == 0) { proceedOntoTheNextStep; } – mouviciel Oct 10 at 11:30
Ok i see, but how would I use NSScanner. I'm not sure which method I should use, and how to use it. – Kevin Oct 10 at 17:52
I suggest you to read Strings Programming Guide, that you can find at developer.apple.com/mac/library/…. – mouviciel Oct 10 at 18:59
Ok, I've read all of the documents, and I still can't get an understanding of how to use this. Can someone give me an example that I can follow up from? Thanks... – Kevin Oct 11 at 12:59
show 1 more comment
vote up 3 vote down

To read a text file:

NSString *path = ...;
NSError *error;
NSString *stringFromFileAtPath = [[NSString alloc]
                                      initWithContentsOfFile:path
                                      encoding:NSUTF8StringEncoding
                                      error:&error];
if (stringFromFileAtPath == nil) {
    // an error occurred
    NSLog(@"Error reading file at %@\n%@",
              path, [error localizedFailureReason]);
    // implementation continues ...

Taken from the Apple docs found here.

You could use

NSString rangeOfString:

to search for your string.
More about that here: Apple Documentation: Searching Strings

link|flag
ok I have the part on searching through a string, but how would I get it so it can search a textfile/? – Kevin Oct 8 at 23:20
I added the part about reading a text-file to my answer. – weichsel Oct 9 at 7:46
Ok, I've read all of the documents, and I still can't get an understanding of how to use this. Can someone give me an example that I can follow up from? Thanks... – Kevin Oct 11 at 12:58
@Kevin: weichsel has given you everything you need. This is a very complete answer. If you can't do it with this info and can't even clearly express why not, I suggest you take a step back, work on some basic Cocoa tutorials and get yourself a good book on the subject. Clearly this topic is beyond you right now and no answer will be sufficient to fill in whatever gap in your knowledge prevents you from using the mountains of information people here have offered you. – Chuck Oct 12 at 0:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.