-HELP- Is it possible to only see comments with time code in it ?

Piaffy

Registered Member
Joined
Apr 29, 2022
Messages
68
Reaction score
12
Hello everyone,

I would like to know if there is a way to only see comments with a time code in it, in the comments section with a filter or any kind of script?

If not, is it possible to scrap all the comments with a time code in it and put them in a CSV file?

*by time code I mean people who are commenting for example "funny moment at 20:32"*

Piaffy
 
Might not be 100% accurate but you could try testing for some regex while scraping.

Code:
/\b.*?\b\d{1,2}:\d{2}\b.*?/g

If there is a match, it will return the whole comment. Else, it won’t return anything.

edit: regex testing code..

Code:
https://regex101.com/r/RDuVmu/1
 
Back
Top