如何从文本文档中提取多项选择题。每个问题都以数字和点开头
1. Any Text _____ Goes here, And end with ? Or . And also can contain another paragraph.
a) possible
b) use regex
c) not possible
d) I dont know
Ans: b
以上是问题的示例。文本文件包括一些填空和一些文章写作的东西,但我只想要选择问题部分直到Ans:...
。所有问题都有答案a,b,c和d。
我在Dreamweaver中复制了我的文本,以便我可以使用正则表达式。
答案 0 :(得分:1)
“1。任何文字_都在这里,最后是?或者。”
可以在正则表达式中转换为此内容:
\d+\.[^\?\.]*[\?\.]
这对你有用吗?这假设你在问题中没有任何问号或句号直到结束......但这也是你所暗示的那种。
编辑:既然你想要的答案而不只是问题本身,而你想要区分其他类型的问题,试试这个:
([ \t]*\d+\.[^\n]+\n(?:[ \t]*[a-zA-Z]\)[^\n]+\n)+[\s]*Ans:[^\n]*)
答案 1 :(得分:0)
此表达式将:
^(\d+)\.\s*(.*?)[\r\n\s]+(^a\).*?)[\r\n\s]+Ans:\s+([a-z]+\b)
请参阅此处了解工作示例:http://www.rubular.com/r/RQoobTedtg
示例文字
12. Any Text _ Goes here, And end with ? Or . And also can contain another paragraph.
a) Q1 possible
b) Q1 use regex
c) Q1 not possible
d) Q1 i dont know
Ans: a
Do you like kittens or other random text?
24. Second question is here
a) Q2 possible
b) Q2 use regex
c) Q2 not possible
d) Q2 i dont know
Ans: b
<强>匹配强>
Match 1
1. 12
2. Any Text _ Goes here, And end with ? Or . And also can contain another paragraph.
3. a) Q1 possible
b) Q1 use regex
c) Q1 not possible
d) Q1 i dont know
4. a
Match 2
1. 24
2. Second question is here
3. a) Q2 possible
b) Q2 use regex
c) Q2 not possible
d) Q2 i dont know
4. b
这个正则表达式确实假设每个问题最后都有一个Ans: x
。