2023-08-29 11:09:58 +02:00
|
|
|
Title : RegEx-SearchPattern.md
|
2023-08-17 19:32:37 +02:00
|
|
|
|
|
|
|
```PlainText
|
|
|
|
((this)(.*\n)\*.*(that))|((that)(.*\n)\*.*(this))
|
|
|
|
```
|
|
|
|
```PlainText
|
|
|
|
(this)
|
|
|
|
```
|
|
|
|
|
|
|
|
= Word
|
|
|
|
|
|
|
|
```PlainText
|
|
|
|
(.*\n)*.*
|
|
|
|
```
|
|
|
|
= alle Zeichen inkl neue Zeile
|
|
|
|
```PlainText
|
|
|
|
(that)
|
|
|
|
```
|
|
|
|
|
|
|
|
= Word
|
|
|
|
|
|
|
|
```PlainText
|
|
|
|
((this)(.*\n)*.*(that))
|
|
|
|
```
|
|
|
|
= ersten 2 Wörter
|
|
|
|
|
|
|
|
```PlainText
|
|
|
|
|
|
|
|
|
```
|
|
|
|
= oder
|
|
|
|
```PlainText
|
|
|
|
((that)(.*\n)*.*(this))
|
|
|
|
```
|
2023-08-29 11:09:58 +02:00
|
|
|
= Eine Gruppe
|