I have a String like the following:-
"assdd ffdsfad 'result_secret_key': 'dfkfaj&^%2', 'auth_matrix': '213fsdf#', 'password': 'adsfa&&*!@#4' and 'app_auth': 'eff#@DS' dafsdsaf adfs adlsfjasdkjf "
I need to mask all the keys containing words like secret, auth, key and password.
I mean to say like 'result_secret_key': '*****'
Can someone suggest me a regex pattern for doing this in Python.
The ultimate string should look like:-
"assdd ffdsfad 'result_secret_key': '******', 'auth_matrix': '******','password': '******' and 'app_auth': '******' dafsdsaf adfs adlsfjasdkjf "
Use
re.sub
function.\S*
matches zero or more non-space characters and(?:secret|auth|key|password)
matches a single word from the given list.