Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working writing a regular expression used to validate string in C. Here is to what I have gone so far

'^"[A-Za-z0-9]*[\t\n]*"$'

for rules - A string should begin with double quotes - May not contain a newline character

However, I am not able to capture the rule for allowing '\' or '"' in a string if preceded with '\'. Here is what I tried:

'^"[A-Za-z0-9]*[\t\n]*[\\\|\\"]?"$'

But this doesn't seem to work. What might be wrong with the regular expression here?

Regards, darkie15

share|improve this question
What language are you doing the regex from? – polygenelubricants May 30 '10 at 5:01

2 Answers

up vote 0 down vote accepted

If you want this regular expression:

^"[A-Za-z0-9]*[\t\n]*"$

To notate in C you must have double quotes around the string. Then you must escape the escapes and the double quotes inside the expression.

Here's what you might have:

"^\"[A-Za-z0-9]*[\\t\\n]*\"$"
share|improve this answer

You're misusing character classes and alternations in group; [\\\|\\"] isn't what you think it is.

Try something like this:

^"([A-Za-z0-9\t]|\\\\|\\")*"$

References

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.