I´m trying to convert
this sentence: setNull( this.isEx.dif_A_B)
wich is a powerbuilder method into this.isEx.dif_A_B = 0
the equivalent in java.
I have tried to use gensub with the following regex:
line = gensub(/setNull[(][ \t]?(\w|\.)*[ \t]?[)]/, " \\1 = 0 " , "g", line);
but the output is B=0
I dont get it why he only catches the last letter.
How i can solve this?
Thanks