How to parse argv in C (between commas)

91 Views Asked by At

I have a little problem with my C program. I would like to parse the args in cmdline into tokens. For example, the program will be running like this: ./hello a b , c , ab c d I want to have all letters between commas to be in a variable. So argv[1] would be a b ; argv[2] would be c ; argv[3] ab c d Is there a way to do it? So that I will be able to play with all token between commas.

Thanks!

1

There are 1 best solutions below

2
On

Use quotes around the arguments. Then they'll be treated separately by the shell and passed in as such.

./hello "a b" "c" "ab c d"