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

时间:2019-07-10 17:13:33

标签: regex

我有这个字符串

(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}之类的东西,但我无法使其正常工作。

1 个答案:

答案 0 :(得分:2)

您可以使用\([^)]{0,25}\)之类的东西。

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