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
Copy file name to clipboardExpand all lines: translations/README-fa.md
+10-11Lines changed: 10 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -84,24 +84,23 @@
84
84
-[Multiline](#53-multiline)
85
85
-[Greedy vs lazy matching](#6-greedy-vs-lazy-matching)
86
86
</div>
87
+
<divdir="rtl">
87
88
88
-
## 1. Basic Matchers
89
-
90
-
A regular expression is just a pattern of characters that we use to perform
91
-
search in a text. For example, the regular expression `the` means: the letter
92
-
`t`, followed by the letter `h`, followed by the letter `e`.
89
+
## 1. پایه ای ترین همخوانی
93
90
91
+
یک عبارت منظم در واقع یک الگو برای جست و جو در یک متن است. برای مثال عبارت منظم `the` به معنی : حرف
92
+
`t`, پس از آن حرف `h`, پس از آن حرف `e` است.
93
+
</div>
94
94
<pre>
95
95
"the" => The fat cat sat on <ahref="#learn-regex"><strong>the</strong></a> mat.
96
96
</pre>
97
97
98
-
[Test the regular expression](https://regex101.com/r/dmRygT/1)
99
98
100
-
The regular expression `123` matches the string `123`. The regular expression is
101
-
matched against an input string by comparing each character in the regular
102
-
expression to each character in the input string, one after another. Regular
103
-
expressions are normally case-sensitive so the regular expression `The`would
104
-
not match the string `the`.
99
+
<divdir="rtl">
100
+
[عبارت منظم را در عمل ببینید](https://regex101.com/r/dmRygT/1)
101
+
102
+
عبارت منظم `123` با رشته `123` مطابقت دارد. عبارت منظم با مقایسه حرف به حرف و کارکتر به کارکترش با متن مورد نظر تطابق را می یابد. همچنین عبارت منظم حساس به اندازه (بزرگی یا کوچکی حروف) هستند. بنابر این واژه ی `The`با `the` همخوان نیست.
103
+
</div>
105
104
106
105
<pre>
107
106
"The" => <ahref="#learn-regex"><strong>The</strong></a> fat cat sat on the mat.
0 commit comments