Ersetzen mit Wildcard, wie?
-
Hallo, ich möchte diesen Ausdruck width=“800” hight=“irgendwas” border=“0” durch das hier width=“80%” border=“0” ersetzen. Das irgendwas kann eben eine x-beliebige Zahl, drei- oder vierstellig sein. Bisher habe ich keinen Weg gefunden. Wie kann man das hinbekommen`?
Vielen Dank -
@Bernd-Gebhardt said in Ersetzen mit Wildcard, wie?:
Hello, I want to replace this expression width=“800” hight=“something” border=“0” with this width=“80%” border=“0” . Something can be any number, three or four digits. So far I haven’t found a way. How can you do that?
Please note that the preferred language of the forum is English.
-
Maybe try:
Find:
width=“800” hight=“\d{3,4}” border=“0”
Replace:width=“80%” border=“0”
Search mode: Regular expressionNote: Because you didn’t follow the RULES for posting such a question, I don’t know what “kind” of double-quotes you have, so you may have to adjust that.