Dadurch werden 2 oder mehr Leerzeichen nur innerhalb von <p class="text_obisnuit">
und entfernt, </p>
und alle anderen Leerzeichen bleiben erhalten.
- Ctrl+H
- Finde was:
(?:<p class="text_obisnuit">|\G)(?:(?!</p>).)*?\s\K\s+
- Ersetzen mit:
LEAVE EMPTY
- Aktivieren Sie die Option Wrap around
- Überprüfen Sie den regulären Ausdruck
- NICHT ÜBERPRÜFEN,
. matches newline
je nachdem, ob Sie mehrere Zeilen zuordnen möchten oder nicht. - Replace all
Erläuterung:
(?: # start non capture group <p class="text_obisnuit"> # literally | # OR \G # restart from position of last match ) # end group (?: # start non capture group (?!</p>) # negative lookahead, make sure we haven't reach </p> . # any character )*? # group may appear 0 or more times, not greedy \s # a space \K # forget all we have seen until this position \s+ # 1 or more spaces
Gegebener Text:
other text <p class="text_obisnuit"> The context of articles, stories, and conversations helps you figure out and understand the meaning of English words in the text that are new to you. </p> other text
Ergebnis für gegebenes Beispiel:
other text <p class="text_obisnuit"> The context of articles, stories, and conversations helps you figure out and understand the meaning of English words in the text that are new to you. </p> other text
Hinweis: Es bleibt Platz hinter <p...>
und kurz davor</p>
Wenn Sie diese Leerzeichen entfernen möchten, müssen Sie eine weitere Regex ausführen:
- Ctrl+H
- Finde was:
(?<=<p class="text_obisnuit">)\s+|\s+(?=</p>)
- Ersetzen mit:
LEAVE EMPTY
- Deaktivieren Sie die Option "Groß- / Kleinschreibung"
- Aktivieren Sie die Option Wrap around
- Überprüfen Sie den regulären Ausdruck
- Replace all
Erläuterung:
(?<= # start positive lookbehind, make sure we have <p class="text_obisnuit"> # literally ) # end lookbehind \s+ # 1 or more spaces | # OR \s+ # 1 or more spaces (?= # start positive lookahead </p> # literally ) # end lookahead
Ergebnis für gegebenes Beispiel:
other text <p class="text_obisnuit">The context of articles, stories, and conversations helps you figure out and understand the meaning of English words in the text that are new to you.</p> other text
..
Just Me vor 6 Jahren 1