Skip to content

Commit a817604

Browse files
committed
paragraph ziishaned#1
1 parent f808849 commit a817604

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

translations/README-fa.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -84,24 +84,23 @@
8484
- [Multiline](#53-multiline)
8585
- [Greedy vs lazy matching](#6-greedy-vs-lazy-matching)
8686
</div>
87+
<div dir="rtl">
8788

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. پایه ای ترین همخوانی
9390

91+
یک عبارت منظم در واقع یک الگو برای جست و جو در یک متن است. برای مثال عبارت منظم `the` به معنی : حرف
92+
`t`, پس از آن حرف `h`, پس از آن حرف `e` است.
93+
</div>
9494
<pre>
9595
"the" => The fat cat sat on <a href="#learn-regex"><strong>the</strong></a> mat.
9696
</pre>
9797

98-
[Test the regular expression](https://regex101.com/r/dmRygT/1)
9998

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+
<div dir="rtl">
100+
[عبارت منظم را در عمل ببینید](https://regex101.com/r/dmRygT/1)
101+
102+
عبارت منظم `123` با رشته `123` مطابقت دارد. عبارت منظم با مقایسه حرف به حرف و کارکتر به کارکترش با متن مورد نظر تطابق را می یابد. همچنین عبارت منظم حساس به اندازه (بزرگی یا کوچکی حروف) هستند. بنابر این واژه ی `The` با `the` همخوان نیست.
103+
</div>
105104

106105
<pre>
107106
"The" => <a href="#learn-regex"><strong>The</strong></a> fat cat sat on the mat.

0 commit comments

Comments
 (0)