1

I have a list of videos for which I want to easily see the number of views. Is there a way to do that with REGEXREPLACE, or some other way?

player0
  • 124,011
  • 12
  • 67
  • 124

1 Answers1

1

try:

=REGEXEXTRACT(QUERY(FLATTEN(IMPORTDATA(A1)); 
 "where Col1 starts with 'viewCount'"; ); "\d+")*1

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124