Guest User

thxgarms

a guest
Jan 22nd, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Here's regexp you can use to find any language array (aka part number) which doesn't support English:
  2.  
  3. ("languages": \[\n((?!\])[\S\s])*\])
  4.  
  5. Here's a similar regex to find all language arrays:
  6.  
  7. ("languages": \[\n((?!\]|("eng"))[\S\s])*\])
Advertisement
Add Comment
Please, Sign In to add comment