Site Sponsored By: SQLDSC - SQL Server Desired State Configuration
Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Hi,We have this syntax from Microsoft for Replace function:REPLACE ( string_expression1 , string_expression2 , string_expression3 )I want to search for two keywords and not only one:images\ and images/ (second one is with back slash.Is it possible to include something like:images/ OR images\ in expression2 likeREPLACE ( string_expression1 ,'images/ OR images\', string_expression3 )I want something like that, how do I get that please?