mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-25 03:10:08 +08:00
fix: Refine special character removal in utility function
This commit is contained in:
parent
49922b960e
commit
1af3cb8419
@ -177,7 +177,7 @@ export function removeQuotes(str) {
|
||||
|
||||
export function removeSpecialCharacters(str: string) {
|
||||
// First remove newlines and quotes, then remove other special characters
|
||||
return str.replace(/[\n"]/g, '').replace(/[\p{M}\p{N}\p{P}\p{S}]/gu, '')
|
||||
return str.replace(/[\n"]/g, '').replace(/[\p{M}\p{P}]/gu, '')
|
||||
}
|
||||
|
||||
export function removeSpecialCharactersForTopicName(str: string) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user