+ 1
Regular expression searching data for a word
If I want to look up a word âifAdminStatusâ how do I write that regular expression. Do I use the findall? (re.findall(râ[]â,hostInterface))
1 Answer
+ 1
You can use re.search or re.findall
Or even without regular expressions this is easy in Python :
print('ifAdminStatus' in hostInterface)
Example code to use regex in Python (watch out for details...)
I really recommend to read the python classes about regex. Very good for introductory level.
https://code.sololearn.com/cH3D82iPIaaX/?ref=app
https://www.sololearn.com/learn/Python/2475/