Skip to content

Commit af03ef7

Browse files
Update sql-server-regex.md
1 parent 0db318e commit af03ef7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs2/pages/troubleshooting/sql-server-regex.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SELECT * FROM @customer WHERE @valid_email.Val('email', Email).EvalBit() = 0
3030

3131
### Problem
3232

33-
You need to perform a rule validation or search with a condition to find valid/invalid rows but "LIKE" and "PATHINDEX" limitations don't cover your requirements:
33+
You need to perform a rule validation or search with a condition to find valid/invalid rows but "LIKE" and "PATINDEX" limitations don't cover your requirements:
3434

3535
- Find customer with invalid email
3636
- Find customer with invalid phone
@@ -224,5 +224,5 @@ fn_split (TVF) |100 ms |625 ms |5,500 ms |55,000 ms|
224224

225225
Eval SQL.NET offers all advanced C# regular expression features in T-SQL statements and search conditions. Even more, you can use C# syntax to return from SQL what you really want and not only the regex result.
226226

227-
While it should never replace scenarios where pure SQL operators/functions such as "LIKE" and "PATHINDEX" are sufficient, Eval SQL.NET will help you easily cover all unsupported ones.
227+
While it should never replace scenarios where pure SQL operators/functions such as "LIKE" and "PATINDEX" are sufficient, Eval SQL.NET will help you easily cover all unsupported ones.
228228

0 commit comments

Comments
 (0)