I am very new to python, i am trying to write a script which opens a file, read the file do some custom function for me and store it in project location. Meanwhile i am facing trouble to read the file line by line and find the string in between the two forward slashes. like in the example shown below i want the script to read the "string between the slashes".
"element / read_this_string /... "
I did go through some hints provided online, as in to use Regular expression or use split function. I found split() rather easy to implement.
I would really appreciate if someone could help me with this problem i am stuck with. I am sure its a simple one but i am wasting too much time on this.
To open a file in python, you can use python's with statement, which will handle file closing. and the for loop will take care of reading the file line by line.