File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
9-regular-expressions/09-regexp-quantifiers/1-find-text-manydots Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
2
- Solution :
2
+ সমাধান :
3
3
4
4
``` js run
5
5
let regexp = / \. {3,} / g ;
6
6
alert ( " Hello!... How goes?....." .match (regexp) ); // ..., .....
7
7
```
8
8
9
- Please note that the dot is a special character, so we have to escape it and insert as ` \. ` .
9
+ আমাদের মনে রাখা উচিত ডট একটি স্পেশাল ক্যারাক্টার, সুতরাং এটিকে আমাদের ব্যাকস্লাশের ` \. ` মাধ্যমে এস্কেপিং করে নিতে হবে।
Original file line number Diff line number Diff line change 1
- importance: 5
1
+ গুরুত্বপূর্ন: ৫
2
2
3
3
---
4
4
5
- # How to find an ellipsis "..." ?
5
+ # কিভাবে একটি উপবৃত্ত খুঁজে পাব "..." ?
6
6
7
- Create a regexp to find ellipsis: 3 (or more ?) dots in a row.
7
+ একটি রেগুলার এক্সপ্রেশন লিখুন যা: ৩ (অথবা ততোধিক ?) ডটের উপবৃত্ত খুঁজবে।
8
8
9
- Check it :
9
+ এটি দেখুন :
10
10
11
11
``` js
12
- let regexp = / your regexp / g ;
12
+ let regexp = / আপনার রেগুলার এক্সপ্রেশনটি লিখুন / g ;
13
13
alert ( " Hello!... How goes?....." .match (regexp) ); // ..., .....
14
14
```
You can’t perform that action at this time.
0 commit comments