Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

find a string

Status
Not open for further replies.

silvain

Programmer
Jan 16, 2003
4
DE
Hi,
i have read a file into a buffer
CFile tst;
tst.open(.........);
DWORD len = tst.getlenght();
BYTE *buf = new BYTE[len];
tst.read(buf, len);

now i want find a string in the buf and change it

is there a function to find and change a string in Buffer?


Thanks in advance
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top