Reputation: 985
I think I have a problem with the special caracter %
.
How can I get my program to work with a string like: toto%titi
?
Regards,
Upvotes: 2
Views: 465
Reputation: 985
The solution to this issue is to double the special character in the string
toto%titi
becomes toto%%titi
Regards.
Upvotes: 3