Is there any way to select a string after a specified word?
I found many examples how to select with classic regex:
(?<=^License:\W)(\w.*)$
...but JS regex is not supporting positive look behind.
I would like to match string after word "License:":
License: 1234-YXCMD-12XMDM-XXXCC
Is there any solution? I would like to use it on http://integromat.com, which supports only JS regex format.