Hi,
I am from Germany and I try to build a regular expression to find and replace in text with the "German Umlaute" äüöß
Example text:
Now I will search and replace in the text and keep the fourth word with this regular expression:
This does not work because the fourth word contains German umlauts. How can I fix it?
Greetings from Germany
I am from Germany and I try to build a regular expression to find and replace in text with the "German Umlaute" äüöß
Example text:
Code: Select all
Hier ist es wunderbar und Klaus will noch bleiben!
Hier ist es schön und Biggi will bleiben!
Hier ist es häßlich und Rainer will gehen!
Code: Select all
Hier ist es ^([a-z]+^) und ^([a-z]+^)!
Greetings from Germany