matches("Hey dude, this number you need to extract: 123456. Thanks.", ".*([0-9]+).*")split("Hey dude, this number you need to extract: 123456. Thanks.", "([0-9]+)")substr (variable_name, index, lenght)
matches("Hey dude, this number you need to extract: 123456. Thanks.", ".*?([0-9]+).*")[0]matches(split_and_trimmed_element, ".*?([0-9.]+).*")[0]
matches("Hey dude, this number you need to extract: 123456. Thanks.", ".*?([0-9]+).*")[0]
matches("Hey dude, this number you need to extract: 123456. Thanks.", ".*?([0-9]+).*")[1]
Im having prolems with this regex;
".*?([0-9]+).*"
I get this error;
"illegal character ''x"
I am using the set value block, am i using the wrong block?
Im to familiar with regular expression.
Thanks