Artikash / Textractor

Extracts text from video games and visual novels. Highly extensible.
GNU General Public License v3.0
2.13k stars 204 forks source link

Need Regex #1339

Open CrunchyNachos1 opened 2 weeks ago

CrunchyNachos1 commented 2 weeks ago

Screenshot (230) Can someone tell me which Regex expression I should use to remove the bracket and the numbers inside it? I don't know how to find the expressions

voidpenguin-28 commented 1 week ago

Using the "Regex Filter" extension (placed before the translation extension ideally), the following regex should work:

[  ]((?:[  ]\d)+[  ])

image