I have an interface tool updating a text input with value = test. I've selected the update value with formulas. Why are the below regex expressions working differently?
regex_replace([Destination],"(.*)",'$1')
yields test as expected; however
regex_replace([Destination],"(.*)",'test')
yields testtest. I've attached my sample workflow. Thanks!