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.
src="http://media.cineblog.it/9/91f/Big-Bad-Wolves-primo-trailer-per-il-crime-thriller-israeliano.jpg" 我正在使用 QString (Qt 4.8),我想使用 QRegExp 从 QString中提取这种字符串。但我找不到正确的正则表达式来做到这一点。该字符串不在 img 标签中。
src="http://media.cineblog.it/9/91f/Big-Bad-Wolves-primo-trailer-per-il-crime-thriller-israeliano.jpg"
尝试使用模式
(src="[^"]+")
更简单的答案:
src=".*"
.* 表示“尽可能多地匹配任何东西(在这一行中)”。