正则表达式:括号之间的匹配,但结果不能超过 25 个字符



我有这个字符串

(non-standardized SKUs on 1p to 3p to re drag so going forward the focus will continue to be on the apparel category which drives our growth and profitability in a long run). (Foreign Language) So we are actively planning for our June promotional event, which is a 

我正在使用(?=()(.*)(?<=))来查找括号之间的所有内容,以便使用re.sub(string, '')将其删除。但我不想删除任何超过 25 个字符的内容。

一直在尝试在正则表达式中使用类似 {0,25} 的东西,但我无法让它工作。

您可以使用

类似 ([^)]{0,25}) .

https://regex101.com/r/9fnuOO/1

相关内容

  • 没有找到相关文章

最新更新