Programmers Language v2
  • Home
  • Language
  • Items
  • Matrix (BETA)
  • About
  • Register
  • Login
Home » PlGroups » Fallunterscheidung

View PlGroup Fallunterscheidung

ID37
TextFallunterscheidung
TitleNot set

PlItems

  • ' Using IF(IIF) logic in Derived Column (LEN(TRIM(Test)) > 0 ? SUBSTRING(Test,1,5) : NULL(DT_WSTR,5))
  • $testVar = "OK"; $resultVar; $resultVar = $testVar=="OK" ? true : false; // same as if-else construction if ($testVar == "OK") { $resultVar = true; } else { $resultVar = false; };
  • thisVar = "OK" resultVar = False # [on_true] if [cond] else [on_false] resultVar = True if thisVar == "OK" else False // same as if-else construction if (thisVar == "OK"): resultVar = True else: resultVar = False
  • VAR1=1 VAR2=2 if [ "$VAR1" -eq "$VAR2" ]; then echo "true"; else echo "false"; fi # false
  • ## Example from here: https://www.kongsli.net/2012/02/23/powershell-another-alternative-to-ternary-operator/ $thisVar='OK' $resultVar = @{$true=1;$false=2}[$thisVar -eq 'OK'] // same as if-else construction if ($thisVar -eq 'OK') { $resultVar = 1; } else { $resultVar = 2; }
Operations
  • List PlGroups
  • Create PlGroup
  • Update PlGroup
  • Delete PlGroup
  • Manage PlGroups
Copyright © 2025 by My Company.
All Rights Reserved.
Powered by Yii Framework.