Thanks all for the responses! Wayne On Mon, May 19, 2008 at 9:47 AM, Nathan Kinsinger <[EMAIL PROTECTED]> wrote:
> > On May 19, 2008, at 8:31 AM, Jens Alfke wrote: > > >> On 19 May '08, at 4:49 AM, Kyle Sluder wrote: >> >> - load the template from resource file >>>> >>> >>> Read the documentation on NSBundle. >>> >> >> Specifically, the -pathToResource... family of methods will give you >> absolute paths to files in your Resources directory. (NSBundle doesn't load >> the files for you, though.) >> >> - search and replace the file to produce another file. >>>> >>> >>> Read the documentation on NSXMLParser. >>> >> >> NSXMLDocument would work better. Initialize one given the path to the >> file, then use XPath expressions on the root NSXMLElement to find the >> locations to replace, then change the contents of those elements. Finally, >> get the string of the entire document and write that to a file (using >> -[NSString writeToFile:].) >> > > NSString could be used as well, try > newFileString = [stringFromFile > stringByReplacingOccurrencesOfString:@"INPUT_PATH" > withString:newInputPathString] > > Another option would be to put %@ in the two places you want to input > strings and use > newFileString = [NSString stringWithFormat:stringFromFile, > newInputPathString, newOutputDirString] > just make sure to put the new strings in the same order as the [EMAIL > PROTECTED] exist in > the file string. > > --Nathan > _______________________________________________ > > Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) > > Please do not post admin requests or moderator comments to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com > > Help/Unsubscribe/Update your Subscription: > http://lists.apple.com/mailman/options/cocoa-dev/wshao99%40gmail.com > > This email sent to [EMAIL PROTECTED] > _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [EMAIL PROTECTED]