Skip to content

Commit 44d41d7

Browse files
committed
task-1
1 parent 23d1e78 commit 44d41d7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

2-
Solution:
2+
সমাধান:
33

44
```js run
55
let regexp = /\.{3,}/g;
66
alert( "Hello!... How goes?.....".match(regexp) ); // ..., .....
77
```
88

9-
Please note that the dot is a special character, so we have to escape it and insert as `\.`.
9+
আমাদের মনে রাখা উচিত ডট একটি স্পেশাল ক্যারাক্টার, সুতরাং এটিকে আমাদের ব্যাকস্লাশের `\.` মাধ্যমে এস্কেপিং করে নিতে হবে।
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
importance: 5
1+
গুরুত্বপূর্ন: ৫
22

33
---
44

5-
# How to find an ellipsis "..." ?
5+
# কিভাবে একটি উপবৃত্ত খুঁজে পাব "..." ?
66

7-
Create a regexp to find ellipsis: 3 (or more?) dots in a row.
7+
একটি রেগুলার এক্সপ্রেশন লিখুন যা: ৩ (অথবা ততোধিক?) ডটের উপবৃত্ত খুঁজবে।
88

9-
Check it:
9+
এটি দেখুন:
1010

1111
```js
12-
let regexp = /your regexp/g;
12+
let regexp = /আপনার রেগুলার এক্সপ্রেশনটি লিখুন/g;
1313
alert( "Hello!... How goes?.....".match(regexp) ); // ..., .....
1414
```

0 commit comments

Comments
 (0)