Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 F# 中编写一个正则表达式,它表示以 " 开头和结尾的字符串,并且可以有任何 Unicode 字符序列,不包括双引号或换行符。
例如:
“我想回家” “我叫库克雅” “”
“我想回家”
“我叫库克雅”
“”
我该怎么做?
您应该使用如下的正则表达式:
let regex = "^\".*\"$"
泰这个
"[^"]*?"
它可以工作,但解析和验证这种字符串你可能需要一个stack.
stack