Skip to content

Commit 4eb47be

Browse files
authored
Update README.md
1 parent 7421a83 commit 4eb47be

File tree

1 file changed

+1
-1
lines changed
  • solution/3400-3499/3465.Find Products with Valid Serial Numbers

1 file changed

+1
-1
lines changed

solution/3400-3499/3465.Find Products with Valid Serial Numbers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ tags:
113113
# Write your MySQL query statement below
114114
SELECT product_id, product_name, description
115115
FROM products
116-
WHERE description REGEXP '\\bSN[0-9]{4}-[0-9]{4}\\b'
116+
WHERE description REGEXP '(?-i)\\bSN[0-9]{4}-[0-9]{4}\\b'
117117
ORDER BY 1;
118118
```
119119

0 commit comments

Comments
 (0)