更新dataUrl图片正则

This commit is contained in:
Xwite 2022-03-01 15:02:49 +08:00 committed by GitHub
parent 115ca980e9
commit 09457dd0cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ object AppPattern {
//匹配格式化后的图片格式
val imgPattern: Pattern = Pattern.compile("<img[^>]*src=\"([^\"]*(?:\"[^>]+\\})?)\"[^>]*>")
//dataURL图片类型
val dataUriRegex = Regex("data:[\\w/\\-\\.]+;base64,(.*)")
val dataUriRegex = Regex("data:.*?;base64,(.*)")
val nameRegex = Regex("\\s+作\\s*者.*|\\s+\\S+\\s+著")
val authorRegex = Regex("^\\s*作\\s*者[:\\s]+|\\s+著")