Hi,
I want to read a text file in Objective-C till a specified delimiter For eg:if this is my .txt input file ,
@abc = name1$
@xyz = name2$
i want to read abc and assign it in the string variable key,and read name1 till $ and assign it to variable value
for eg:expected output
key = abc
value= name1
key = xyz
value= name2
Kindly suggest me some solution, which functions are available in objective-C, what is its syntax.