I am trying to retrieve for example ‘name’ and this is read via data scraping.
But name could be read in different ways. So i would like to be able to ignore the ‘value cannot be null’ if the value is not there. It could still be retrieved further down the workflow. Is this possible?
I might have not mentioned my problem clearly, apologies!
The problem pops up as soon as i try to assign my regex.match to a variable.
If there is no match, i would like to try a different regex to match and create the variable.
But ofcourse it throws the fault:
Value cannot be null.
Parameter name: input
I tried the following: variable = “” within IF activity. Also tried variable IsNot Nothing.