I have a template text (newsletter text) that will be sent to many users; there are some placeholders in the text, such as {{firstname}}, {{lastname}}, etc.
What would be more efficient for replacing placeholders with actual values,
.Replace(..)or RegExpor other methods?
.NET language.
source
share