Makro oder Programm für wiederkehrende Änderung.
-
Hallo zusammen,
ich habe folgendes Problem! Bei der Ausgaben von einem G-Code (NC-Code) kommt in vielen Sätzen ein unterschiedlicher F=Vorschubwert heraus.
Z. B. N010 X=1000 F1410; N015 X=1100 F1415; usw
Da ich händisch ca. bis zum fünfhundert solche Sätze ändern müsste, würde ich dies über ein Makro machen lassen.
Ändere alle Werte von F1400 - F1500 in z.b. F1450 oder so ähnlich. Wie kann ich dies lösen.
Danke
Gruß-Stephan -
Please use English as the primary language in this forum. If you want to double-post with both English and German, that is fine. (Bitte verwenden Sie Englisch als Hauptsprache in diesem Forum. Wenn Sie sowohl auf Englisch als auch auf Deutsch doppelt posten möchten, ist das in Ordnung. )
If you have a simple condition like change everything from 1400 to 1500, that’s doable. If you want an arbitrary range, like everything from 1427 to 1503, that will be a lot harder. I will show you the simple, and direct you to a plugin for the complicated.
- Data =
F1399 F1410 F1415 F1500 F1517
- FIND =
F(1500|14\d\d)
- REPLACE =
F1450
- Search Mode = Regular Expression
You can actually get more complicated than that, but changing the range if you are changing your mind each time you run this replacement is not easy.
If you have a complicated range, it’s probably better expressed in low <= match <= high, in which case, regex alone isn’t enough. However, the PythonScript plugin (which you can install using Plugins > Plugins Admin) will allow you to run a python function on every match and determine the replacement based on arbitrary programming. If you need to go down that route, you can search this forum for
add_1
, which is the name of an example search callback function described in the PythonScript documentation; it will give the right concept for how to do the search, and in general what the function will look like; you will just have to change the function to only replace the data if the math comparisons work out. If you want to go this route, but need some help, let us know. - Data =
-
Hallo,
vorab erst einmal vielen Dank, das du dich dem Thema angenommen hast.
Leider bekomme ich über (suchen und ersetzen) keinen Treffer und somit auch keine neue Belegung der F-Werts.
Vielleicht mache ich aber auch was falsch!?
MfG-Stephan -
Did you remember to enable Search Mode = Regular Expression?
Without regular expression mode
With regular expression mode
Either that, or you data doesn’t actually look like what you presented to us.
-
Danke, wer lesen kann ist klar im Vorteil.
Kann man das irgendwo nachlesen, welche Sachen ich eingeben muss, um wie im Beispiel was verändern möchte?
Es gibt noch andere Dinge ich mal ausprobieren würden.
Danke und ein schönen Wochenende
Gruß-Stephan -
My recent screenshot was just to show you that it matches when Regular Expression was turned on, it would find three matches, whereas with Normal search mode turned on, it finds 0 matches, showing you how important the Regular Expression toggle is for this search. To do that, I needed a dialog that had a Count button, which the Search dialog has, but the Replace dialog does not. The Replace only gives a count if you use Replace All (which would have changed my example text, so you wouldn’t have seen what was matched).
But to do Replace, you use the Replace menu. I am sorry that I thought that was obvious, and didn’t need to be stated.
This is an English-language forum. I am sorry if that makes it harder for you to understand. I will attempt to switch my Notepad++ to Deutsch and navigate the menus/dialogs in both English and Deutsch.
- Search > Replace… = Suchen > Ersetzen
- Search Mode = regular expression = Suchmodus = Reguläre Ausdrüke
- Find what = Suchen nach =
F(1500|14\d\d)
- Replace with = Ersetzen durch =
F1450
- Find Next = Weiter suchen will highlight the
F1410
- Replace = Ersertzen will replace the
F1410
withF1450
- Replace All = Alle ersetzen will replace all of
F1410
,F1415
, andF1500
withF1450
.
Notice that when I started, I had
F1399 F1410 F1415 F1500 F1517
and when done I had
F1399 F1450 F1450 F1450 F1517
The replacement is done through the Replace (
Ersetzen
) menu and dialog. -
@PeterJones said in Makro oder Programm für wiederkehrende Änderung.:
Please use English as the primary language in this forum.
I guess this was ignored. :-(
It’s easy enough for the reader to “Translate to English”, but I still think the onus is on the poster to post in English.
I for one won’t be doing any translating on the reading end in order to answer non-English posts. -
@Alan-Kilborn said in Makro oder Programm für wiederkehrende Änderung.:
@PeterJones said in Makro oder Programm für wiederkehrende Änderung.:
Please use English as the primary language in this forum.
I guess this was ignored. :-(
It’s easy enough for the reader to “Translate to English”, but I still think the onus is on the poster to post in English.
I for one won’t be doing any translating on the reading end in order to answer non-English posts.Hello Alan, es gibt bestimmt mehr Menschen die Chinesischs sprechen und schreiben.
Also sollte man alles ins Chinesiche Übersetzen, aber Achtung, dann könnt ihr gleich den Block schließen, weil ihr(du) tausende ausgrenzt.
Der Link aus meinen Notepad++ geht hier in.
Probleme sind das!!!