-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
How to continue a “For Each Value” Loop in FPScript?
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 11 Jahren, 3 Monaten von Sven Wick aktualisiert.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AutorBeiträge
-
Juli 31, 2013 um 5:36 pm Uhr #12823Sven WickMitglied
Hi,
here is a snippet from one of our Python scripts,
which I would like to port to FPScript.... import fileinput for line in fileinput.input(): if not CURRENT_TEMP > RANGE_MIN and CURRENT_TEMP RANGE_MIN And CURRENT_TEMP < RANGE_MAX Then // Do nothing. Just get the next value End // ... End
Juli 31, 2013 um 5:36 pm Uhr #8480Sven WickMitgliedHi,
here is a snippet from one of our Python scripts,
which I would like to port to FPScript....
import fileinput
for line in fileinput.input():
if not CURRENT_TEMP > RANGE_MIN and CURRENT_TEMP < RANGE_MAX: continue ... [/code] It seems, there is no way in FPScript to just skip to the next iteration. I would like to do something like this: [code] For Each Value CURRENT_TEMP In Messdaten\T_MWE_2 Do If Not CURRENT_TEMP > RANGE_MIN And CURRENT_TEMP < RANGE_MAX Then // Do nothing. Just get the next value End // ... End [/code]
August 6, 2013 um 8:51 am Uhr #9295Bernhard KantzTeilnehmerThe following code should work. But should avoid such loops and use the Event Isolation Analysis object.
Dim CURRENT_TEMP Dim RANGE_MIN = 600 Dim RANGE_MAX = 800 For Each Value CURRENT_TEMP In T_MWE_2 Do If Not (CURRENT_TEMP > RANGE_MIN And CURRENT_TEMP < RANGE_MAX) Then // Do nothing. Just get the next value End // ... End
-
AutorBeiträge
Viewing 3 posts - 1 through 3 (of 3 total)
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.