$value$plusargs string input with spaces

Hi There,

I wanted to input a string value to simulation using $value$plusargs

The string value is a sentence with spaces between multiple words.

e.g.

./simv +take_string_value=“want to input a sentence”

$value$plusargs(“take_string_value=%s”, string_var);

However I see that I get only “Want” in the string variable string_var.

How to modify the code to get the entire string “want to input a sentence”

Thanks,
Sunil.

In reply to KumarSunilB:

This might be a shell scripting issue. Try single quotes ’ instead of double quotes ".