Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
I tried something like this. So far it works perfect for me. I don't use streams, the length() method was convenient enough [code=c] void strReplace(string &s, string oldstr, string newstr) { unsigned int count = 0; string buffer = ""; for (unsigned int i = 0; i < s.length(); i++) …
The End.
WytCZ