Replace function example in sql server

Syntax : Replace('string_Expression','string_replaceFrom','string_replaceTo')

Example : SELECT REPLACE(' asp.net with vb', 'vb', 'c#')

Output: 'asp.net with c#'