Hi, I am translating code from Matlab. My text editor is Atom.
I would like to know if I can change text using find function (ctrl + f) ignoring parts of the text as follows
size(param.sval, 1);
being changed to
size(param.sval)[1];
without having to type “param.sval” so I can change it all at once.
Thank you.