We use Regular Expressions every single day!
You can easily search and replace anything you want. Like adding an additional parameter to the transferfields-method in your application, which will take care moving data from Business Central 14 to Business Central 18.
Search for this:
.Transferfields\((.*)\);
and replace by this:
.TransferFields($1,false);
Happy Coding!
Comments