Posts by João Pontes • 73 points
3 posts
-
1
votes0
answers1518
viewsQ: VBA code to get values inside HTML
I want to collect two values of an HTML through VBA. The information '40 New' and '$19.95'. My code can get '$19.95', but in the next iteration it overwrites and gets '$17.38'. `Set QuestionList =…
-
1
votes2
answers170
viewsQ: How to run all files inside a Folder
I have a folder with several audio files, and I want the cmd code to run, one at a time. Does anyone have any idea if this is possible and if so, how?
-
5
votes2
answers306
viewsQ: How to do data Mining in a txt file with re.finditer
This code can tell me the location of the words batman and sei throughout the file txt: import re f = open('C:/pah.txt','r+') text = f.read() words = ['batman','sei'] for x in words: for m in…
pythonasked João Pontes 73