ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
yes. me again :P and this is yet another question for string manipulation in c.
I've searched this forum, but I didn't find sth helpful unluckily. So there I go:
I have
char *path = "/home/user/a_DIR/abc"
and I want to write a code to replace a_DIR with yet_another_DIR..
so path_new would be
char *path_new = "/home/users/yet_another_DIR/abc"
i tried man string and then man every function mention there. I think i could use a combination of them to make the above.<?> I'm not sure.. if you want you can help
thank you very much
ps. I 've tried some stuff with strstr but wasn't able to do have the wanted result
well u can cut off the string after a_DIR and paste it to another temp string.
Then delete a_DIR.
then concatenate the new string to the path.
then concatenate the temp to path
Doing this sort of thing in memory and from harddisk are different(in C at least) as you can not safely update a file by doing a replace. So normally another couple of steps are involved, so the process becomes:
Read the file and store in memory
Manipulate the stored version
Write the whole memory version to file overwriting the previous version.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.