Предполагая следующее определение:
/// <summary>
/// Replaces each occurrence of sPattern in sInput with sReplace. This is done
/// with the CLR:
/// new RegEx(sPattern, RegexOptions.Multiline).Replace(sInput, sReplace).
/// The result of the replacement is the return value.
/// </summary>
[SqlFunction(IsDeterministic = true)]
public static SqlString FRegexReplace(string sInput, string sPattern,
string sReplace)
{
return new Regex(sPattern, RegexOptions.Multiline).Replace(sInput, sReplace);
}
Передача значения nvarchar(max)
для sInput
с длиной > 4000 приведет к усечению значения (т.е. результат вызова этого UDF равен nvarchar(4000)
в отличие от nvarchar(max)
.