To be more precise, I have a field called aanvr_arts_rizivnr within my script. It's my aim to alter the contents of aanvr_arts_rizivnr, so that all slashes within this field are removed. And then I want to write the altered contents to an output file called outfileadr.
I've tried it as follows, but this doesn't give the expected result :
aanvr_arts_rizivnr = gsub(/\//,"",aanvr_arts_rizivnr)
print aanvr_arts_rizivnr >> outfileadr
What am I doing wrong ? I'm new to akw, so excuse me if my question appears to be silly.