Get vidoe url from html

hi i tried to built a automation for wordpress to telegram and i tride to take the video url form the contnect
image

i want to get only the vidoe url from the content how can i do this

To get helpful responses

  • explain your goal with as much context as possible
  • mention any steps you’ve tried so far

Include screenshots of

  • your scenario setup (functions, mappings, variables, etc.)
  • module configurations and outputs
  • any error messages you are getting

Welcome to the Make community!

You can use a Text Parser “Match Pattern” module with this regular expression pattern

mp4="(?<video_url>[^"]+)"

Regex test: https://regex101.com/r/2MrdCo


For more information, see Text Parser in the Make Help Center:

Match Pattern
The Match pattern module enables you to find and extract string elements matching a search pattern from a given text. The search pattern is a regular expression (aka regex or regexp), which is a sequence of characters in which each character is either a metacharacter, having a special meaning, or a regular character that has a literal meaning.

Hope this helps!

2 Likes