I capture a Text from command line output,I need replace all characters after '$',I tried following ways,but both not work.
Replace([output], "\$.*", "\$")
Replace([output], "\\$.*", "\\$")
Can we use regular expression in the replace function? how ...