top of page

Your daily Business with RegEx as a Developer

Daniel Gorski

Aktualisiert: 4. Jan. 2022


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!

 
 
 

Comentários


bottom of page