7. Extract Decipher - Linux13524/YoutubeDecipher GitHub Wiki
Load the subfunction calls from the decipher function and store them in a list (function name + integer argument).
Needs: Decipher function definition
Gives: List of subfunction calls with argument
RegEx:
\.(..)\(.,(\d+)\)
RegEx Match (Group 1):
Every match will contain a subfunction name
RegEx Match (Group 2):
Every match will contain an integer argument
Next: Apply Decipher