Is there a function in c where I can copy specific parts of a char array

Is there a function in c where I can copy specific parts of a char array



I have the char


char test = "Hello theren"
"World, my namen"
"Is bobn";



Is there a function where I can use to store each line into a different char array. So the n would indicate for me to stop, and store it into a new array? So in the end I would have 3 sets of char arrays. Essentially is there a function which I can use to find the n, then copy everything before it, but then stop copying if it sees a n


n


n


n


char line1 = "Hello theren";
char line2 = "World, my namen";
char line3 = "Is bobn";




1 Answer
1



You can use strtok as seen in the example below.


#include<string.h>
#include<stdio.h>
int main()

char test = "Hello theren"
"World, my namen"
"Is bobn";

char *p;
p = strtok(test, "n");

while(p)
printf("%sn", p);
p = strtok(NULL, "n");


return 0;






How can I also ensure that n also gets added into each line as well.

– Sarah Chan
Sep 9 '18 at 9:43


n



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown




By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)