优化
This commit is contained in:
@@ -16,7 +16,6 @@ import kotlinx.coroutines.CancellationException
|
||||
import splitties.init.appCtx
|
||||
import java.lang.ref.WeakReference
|
||||
import java.util.concurrent.CopyOnWriteArrayList
|
||||
import java.util.regex.Pattern
|
||||
|
||||
class ContentProcessor private constructor(
|
||||
private val bookName: String,
|
||||
@@ -82,15 +81,6 @@ class ContentProcessor private constructor(
|
||||
): List<String> {
|
||||
var mContent = content
|
||||
if (content != "null") {
|
||||
//去除重复标题
|
||||
// try {
|
||||
// val name = Pattern.quote(book.name)
|
||||
// val title = Pattern.quote(chapter.title)
|
||||
// val titleRegex = "^(\\s|\\p{P}|${name})*${title}(\\s)*".toRegex()
|
||||
// mContent = mContent.replace(titleRegex, "")
|
||||
// } catch (e: Exception) {
|
||||
// AppLog.put("去除重复标题出错\n${e.localizedMessage}", e)
|
||||
// }
|
||||
if (reSegment && book.getReSegment()) {
|
||||
//重新分段
|
||||
mContent = ContentHelp.reSegment(mContent, chapter.title)
|
||||
|
||||
Reference in New Issue
Block a user