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
# স্টিকি ফ্ল্যাগ "y", নির্দিষ্ট (পজিশনে) অবস্থানে অনুসন্ধান
3
3
4
-
The flag `pattern:y`allows to perform the search at the given position in the source string.
4
+
`pattern:y`ফ্ল্যাগটির মাধ্যমে আমরা প্রদত্ত স্ট্রিংয়ের কোন একটা নির্দিষ্ট পজিশনে অনুসন্ধান চালাতে পারি।
5
5
6
-
To grasp the use case of `pattern:y`flag, and better understand the ways of regexps, let's explore a practical example.
6
+
`pattern:y`ফ্ল্যাগ এর ব্যবহারিক প্রয়োগ, এবং রেগুলার এক্সপ্রেশনকে আরো ভালোভাবে বুঝতে, চলুন একটি উদাহরণ দেখি।
7
7
8
-
One of common tasks for regexps is "lexical analysis": we get a text, e.g. in a programming language, and need to find its structural elements. For instance, HTML has tags and attributes, JavaScript code has functions, variables, and so on.
8
+
রেগুলার এক্সপ্রেশনের একটি সাধারণ কাজ হল "(লেক্সিকাল অ্যানালাইসিস) lexical analysis": কোন একটি টেক্সটে প্রোগ্রামিং ভাষাগুলোর এলিমেন্টের স্ট্রাকচার খুঁজা। যেমন, HTML এর আছে ট্যাগ অ্যাট্রিবিউট, জাভাস্ক্রিপ্টে আছে ফাংশন, ভ্যারিয়েবল ইত্যাদি।
9
9
10
-
Writing lexical analyzers is a special area, with its own tools and algorithms, so we don't go deep in there, but there's a common task: to read something at the given position.
10
+
লেক্সিকাল অ্যানালাইজার হল একটি বিশেষ টার্ম এবং এর নিজস্ব টুল এবং অ্যালগরিদম আছে, তবে এখানে আমাদের এই ব্যাপারটির বিস্তারিত জানা লাগবে না এবং এর একটি কমন কাজ হল: কোন একটি নির্দিষ্ট অবস্থানে কোন কিছু পড়া।
11
11
12
-
E.g. we have a code string `subject:let varName = "value"`, and we need to read the variable name from it, that starts at position `4`.
12
+
যেমন আমাদের একটি স্ট্রিং আছে `subject:let varName = "value"`, এখানে আমাদের ভ্যারিয়েবলের নামটি লাগবে, যা শুরু হয় `4` নাম্বার ইনডেক্স থেকে।
13
13
14
-
We'll look for variable name using regexp `pattern:\w+`. Actually, JavaScript variable names need a bit more complex regexp for accurate matching, but here it doesn't matter.
14
+
আমরা রেগুলার এক্সপ্রেশনে `pattern:\w+` এর মাধ্যমে ভ্যারিয়েবলটি খুঁজতে পারি। প্রকৃতপক্ষে, ভ্যালিড জাভাস্ক্রিপ্ট ভ্যারিয়েবলের নাম যাচাইকরণের জন্য আমাদের আরো জটিল রেগুলার এক্সপ্রেশন লাগে, তবে এখানে আমরা ব্যাপারটি বুঝতে সাধারণ একটি প্যাটার্ন ব্যবহার করছি।
15
15
16
-
-A call to `str.match(/\w+/)`will find only the first word in the line (`var`). That's not it.
17
-
-We can add the flag `pattern:g`. But then the call `str.match(/\w+/g)`will look for all words in the text, while we need one word at position`4`. Again, not what we need.
16
+
-`str.match(/\w+/)`এটি এক্সিকিউট হলে আমরা শুধু প্রথম শব্দটি পাব (`var`)। কিন্তু আমরা এটি চাই না।
17
+
-আমরা `pattern:g` ফ্ল্যাগটি ব্যবহার করতে পারি। কিন্তু `str.match(/\w+/g)`এটি টেক্সটের সকল শব্দ অনুসন্ধান করে, যেখানে আমাদের শুধু একটি শব্দ চাই যার অবস্থান শুরু`4` হতে। কিন্তু, এটি দ্বারাও আমাদের সমস্যার সমাধান হবে না।
18
18
19
-
**So, how to search for a regexp exactly at the given position?**
19
+
**সুতরাং, আমরা রেগুলার এক্সপ্রেশনের মাধ্যমে কিভাবে কোন একটি নির্দিষ্ট অবস্থানে অনুসন্ধান করতে পারি?**
20
20
21
-
Let's try using method `regexp.exec(str)`.
21
+
চলুন এই `regexp.exec(str)` মেথডটি দেখি।
22
22
23
-
For a `regexp`without flags `pattern:g`and`pattern:y`, this method looks only for the first match, it works exactly like `str.match(regexp)`.
23
+
`regexp`এ `pattern:g`এবং`pattern:y` ফ্ল্যাগ ছাড়া মেথডটি প্রথম মিলটি দেখায়, এটি অনেকটা `str.match(regexp)` এর মত কাজ করে।
24
24
25
-
...But if there's flag `pattern:g`, then it performs the search in `str`, starting from position stored in the `regexp.lastIndex`property. And, if it finds a match, then sets `regexp.lastIndex`to the index immediately after the match.
25
+
...কিন্তু যদি `pattern:g` ফ্ল্যাগটি থাকে, তাহলে `str` এ `regexp.lastIndex`প্রপার্টির অবস্থান হতে অনুসন্ধানটি চালায়। এবং এটি যদি কোন মিল খুঁজে পায়, তাহলে মিলের পরবর্তী অবস্থানটি `regexp.lastIndex`এ সেট হয়।
26
26
27
-
In other words, `regexp.lastIndex`serves as a starting point for the search, that each `regexp.exec(str)`call resets to the new value ("after the last match"). That's only if there's `pattern:g`flag, of course.
27
+
অন্যকথায় বলা যায়, `regexp.lastIndex`স্ট্রিংয়ের শুরু হতে অনুসন্ধানটি চালায়, তারপর কোন একটি অবস্থান মিল পেলে `regexp.exec(str)`এর পরের অবস্থানটি `regexp.lastIndex` এ নতুন ভ্যালু হিসেবে সেট হয় আর না পেলে এটি রিসেট হয়ে যায়। তবে এই ব্যাপারটি ঘটে যদি শুধুমাত্র `pattern:g`ব্যবহার করি।
28
28
29
-
So, successive calls to `regexp.exec(str)`return matches one after another.
29
+
সুতরাং, `regexp.exec(str)`একটির পর আরেকটি মিল রিটার্ন করতে থাকে।
30
30
31
-
Here's an example of such calls:
31
+
আসুন উদাহরণের মাধ্যমে আরো বিস্তারিত দেখি:
32
32
33
33
```js run
34
-
let str ='let varName'; //Let's find all words in this string
34
+
let str ='let varName'; //স্ট্রিংয়ের প্রতিটি শব্দ খুঁজি
alert(regexp.lastIndex); // 3 (position after the match)
40
+
alert(word1[0]); // let (১ম শব্দটি)
41
+
alert(regexp.lastIndex); // 3 (মিলের পর নতুন অবস্থান)
42
42
43
43
let word2 =regexp.exec(str);
44
-
alert(word2[0]); // varName (2nd word)
45
-
alert(regexp.lastIndex); // 11 (position after the match)
44
+
alert(word2[0]); // varName (২য় শব্দটি)
45
+
alert(regexp.lastIndex); // 11 (পরবর্তী মিলের পর নতুন অবস্থান)
46
46
47
47
let word3 =regexp.exec(str);
48
-
alert(word3); // null (no more matches)
49
-
alert(regexp.lastIndex); // 0 (resets at search end)
48
+
alert(word3); // null (আর কোন শব্দ নেই)
49
+
alert(regexp.lastIndex); // 0 (অনুসন্ধান শেষে পুনরায় অবস্থান 0)
50
50
```
51
51
52
-
We can get all matches in the loop:
52
+
সকল মিলকে লুপের মাধ্যমে খুঁজতে পারি:
53
53
54
54
```js run
55
55
let str ='let varName';
@@ -59,23 +59,23 @@ let result;
59
59
60
60
while (result =regexp.exec(str)) {
61
61
alert( `Found ${result[0]} at position ${result.index}` );
62
-
//Found let at position 0, then
63
-
//Found varName at position 4
62
+
//শূন্যতম অবস্থানে let, তারপর
63
+
// varName ৪র্থ অবস্থানে
64
64
}
65
65
```
66
66
67
-
Such use of `regexp.exec`is an alternative to method `str.matchAll`, with a bit more control over the process.
67
+
`regexp.exec`এটির ব্যবহার অনেকটা `str.matchAll` এর মত, তবে প্রসেসটিতে কিছুটা কন্ট্রোল থাকে।
68
68
69
-
Let's go back to our task.
69
+
চলুন আমাদের টাস্কটিতে ফিরে যায়।
70
70
71
-
We can manually set `lastIndex`to `4`, to start the search from the given position!
71
+
আমরা `lastIndex`এর পজিশন `4` সেট করি, অই অবস্থান হতে অনুসন্ধানটি চালু হবে!
72
72
73
-
Like this:
73
+
এভাবে:
74
74
75
75
```js run
76
76
let str ='let varName = "value"';
77
77
78
-
let regexp =/\w+/g; //without flag "g", property lastIndex is ignored
78
+
let regexp =/\w+/g; // "g" ফ্ল্যাগছাড়া lastIndex প্রপার্টি পাব না
79
79
80
80
*!*
81
81
regexp.lastIndex=4;
@@ -85,54 +85,54 @@ let word = regexp.exec(str);
85
85
alert(word); // varName
86
86
```
87
87
88
-
Hooray! Problem solved!
88
+
ইয়েহহহহহহ! সমস্যাটি সমাধান করে ফেলেছি!
89
89
90
-
We performed a search of `pattern:\w+`, starting from position `regexp.lastIndex = 4`.
90
+
আমরা `pattern:\w+` এর মাধ্যমে `regexp.lastIndex = 4` সেটের মাধ্যমে অনুসন্ধানটি সম্পন্ন করেছি।
91
91
92
-
The result is correct.
92
+
এবং আমরা সঠিক ফলাফল পেয়েছি।
93
93
94
-
...But wait, not so fast.
94
+
...কিন্তু থামুন।
95
95
96
-
Please note: the `regexp.exec`call start searching at position `lastIndex`and then goes further. If there's no word at position `lastIndex`, but it's somewhere after it, then it will be found:
96
+
দয়া করে মনে রাখুন: `regexp.exec`অনুসন্ধান শুরু করে `lastIndex`এর অবস্থান হতে এবং পরবর্তী অবস্থানে যায়। যদি `lastIndex` এ পজিশনে কোন শব্দ না থাকে কিন্তু এরপরে থাকে তাহলে আমরা মিলটি পাব:
97
97
98
98
```js run
99
99
let str ='let varName = "value"';
100
100
101
101
let regexp =/\w+/g;
102
102
103
103
*!*
104
-
//start the search from position 3
104
+
//৩য় অবস্থান হতে অনুসন্ধান শুরু
105
105
regexp.lastIndex=3;
106
106
*/!*
107
107
108
-
let word =regexp.exec(str);
109
-
//found the match at position 4
108
+
let word =regexp.exec(str);
109
+
//৪র্থ অবস্থানে মিল খুঁজে পায়
110
110
alert(word[0]); // varName
111
111
alert(word.index); // 4
112
112
```
113
113
114
-
For some tasks, including the lexical analysis, that's just wrong. We need to find a match exactly at the given position at the text, not somewhere after it. And that's what the flag `y`is for.
114
+
কিন্ত আমাদের টাস্কে লেক্সিকাল অ্যানালাইসিসের মতে এটি ভুল। আমাদের একটি নির্দিষ্ট অবস্থানে নির্দিষ্ট একটি মিল খুঁজতে হবে, অই অবস্থানের আগে বা পরে নই। এবং এজন্যই `y`ফ্ল্যাগটি এসেছে।
115
115
116
-
**The flag `pattern:y`makes `regexp.exec`to search exactly at position `lastIndex`, not "starting from" it.**
116
+
**`pattern:y`ফ্ল্যাগটি নিশ্চিত করে `regexp.exec`এটি `lastIndex` এর নির্দিষ্ট অবস্থানে অনুসন্ধান চালাবে, "শুরু থেকে" নই।**
117
117
118
-
Here's the same search with flag `pattern:y`:
118
+
চলুন একই অনুসন্ধানটি `pattern:y` ব্যবহারের মাধ্যমে দেখি:
119
119
120
120
```js run
121
121
let str ='let varName = "value"';
122
122
123
123
let regexp =/\w+/y;
124
124
125
125
regexp.lastIndex=3;
126
-
alert( regexp.exec(str) ); // null (there's a space at position 3, not a word)
As we can see, regexp `pattern:/\w+/y`doesn't match at position `3`(unlike the flag `pattern:g`), but matches at position`4`.
132
+
এখানে আমরা দেখছি, রেগুলার এক্সপ্রেশনটিতে `pattern:/\w+/y`এটি `3`অবস্থানে মিলবে না(`pattern:g` ফ্ল্যাগের মত না), কিন্তু`4` অবস্থানে মিলবে।
133
133
134
-
Not only that's what we need, there's an important performance gain when using flag `pattern:y`.
134
+
এটি রেহুলার এক্সপ্রেশন ইঞ্জিনের পারফরম্যান্সে গুরুত্বপূর্ন ভূমিকা রাখে `pattern:y`।
135
135
136
-
Imagine, we have a long text, and there are no matches in it, at all. Then a search with flag `pattern:g`will go till the end of the text and find nothing, and this will take significantly more time than the search with flag `pattern:y`, that checks only the exact position.
136
+
মনে করুন, আমাদের একটি বড় ট্যাক্সটে অনুসন্ধান চালাতে হবে, এবং সেখানে আমাদের কাঙ্ক্ষিত প্যাটার্নটি নাই। যদি আমরা `pattern:g`ফ্ল্যাগের মাধ্যমে চালাই, তাহলে এটি শেষ পর্যন্ত অনুসন্ধান চালাবে, এবং কোন মিল পাবে না এবং এটি অবশ্যই `pattern:y` এর তুলনায় অনেক বেশী সময় নেবে। যেখানে আমরা শুধুমাত্র `pattern:y` এর মাধ্যমে একটি নির্দিষ্ট অবস্থানে অনুসন্ধানটি করতে পারতাম।
137
137
138
-
In tasks like lexical analysis, there are usually many searches at an exact position, to check what we have there. Using flag `pattern:y`is the key for correct implementations and a good performance.
138
+
আমাদের টাস্কের অনুরূপ, লেক্সিকাল অ্যানালাইসিসে নির্দিষ্ট অবস্থানে কি আছে তা অনুসন্ধান করতে হয়। `pattern:y`ফ্ল্যাগের মাধ্যমে আমাদের অনুসন্ধানটির পারফরম্যান্স অনেক ভালো হবে।
0 commit comments