Merge pull request #1162 from bushixuanqi/patch-3

Update AppPattern.kt
pull/1163/head
kunfei 3 years ago committed by GitHub
commit 7eab4b1138
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/src/main/java/io/legado/app/constant/AppPattern.kt

@ -9,10 +9,10 @@ object AppPattern {
val EXP_PATTERN: Pattern = Pattern.compile("\\{\\{([\\w\\W]*?)\\}\\}")
//匹配格式化后的图片格式
val imgPattern: Pattern = Pattern.compile("<img src=\"([^>]+)\">")
val imgPattern: Pattern = Pattern.compile("<img[^>]*src=\"([^>]+)\"[^>]*>")
val nameRegex = Regex("\\s+作\\s*者.*|\\s+\\S+\\s+著")
val authorRegex = Regex("^.*?作\\s*者[::\\s]*|\\s+著")
val fileNameRegex = Regex("[\\\\/:*?\"<>|.]")
val splitGroupRegex = Regex("[,;,;]")
}
}

Loading…
Cancel
Save