You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to look for `#`followed by 6 hexadecimal characters.
1
+
আমাদের `#`এর পর ৬টি হেক্সাডেসিমেল ক্যারাক্টার খোঁজা লাগবে।
2
2
3
-
A hexadecimal character can be described as `pattern:[0-9a-fA-F]`. Or if we use the `pattern:i`flag, then just `pattern:[0-9a-f]`.
3
+
`pattern:[0-9a-fA-F]` এর মাধ্যমে আমরা হেক্সাডেসিমেল ক্যারাক্টার সংজ্ঞায়িত করতে পারি। অথবা যদি আমরা `pattern:i`ফ্ল্যাগ ব্যবহার করি তাহলে প্যাটার্নটি হবে `pattern:[0-9a-f]`।
4
4
5
-
Then we can look for 6 of them using the quantifier `pattern:{6}`.
5
+
এখন আমরা কোয়ান্টিফায়ার `pattern:{6}` ব্যবহার করে ৬টি ক্যারাক্টার খুঁজতে পারি।
6
6
7
-
As a result, we have the regexp: `pattern:/#[a-f0-9]{6}/gi`.
0 commit comments