views:

9

answers:

1

Hi,

I want to make a program that will search and replace some words occurrence in a file. I am using xcode. I want to do this programmatically using some standard free API in a MAC application.

A: 

Use awk or sed, which are standard UNIX tools. See this nice Apple document.

Yuji
thanx a lot ...
sole007