Use OR expression in Replace

How can I apply a text replacement to replace the text “DK” or “RF”

The ReplaceRegEx function allows you to specify a regular expression pattern to find and replace within a string.
To match “DK” or “RF” use the regular expression: “DK|RF”.

You can download a worked example here