I want to write a regular expression in F# that represents strings which start & end with " and can have any sequence of Unicode characters not including double quote or newline.
For example:
"I want to go home"
"My name is cookya "
""
How can I do it?
You should use a regular expression like the following :