Manage PlItems

You may optionally enter a comparison operator (<, <=, >, >=, <> or =) at the beginning of each of your search values to specify how the comparison should be done.

Advanced Search
Displaying 121-130 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
20PHPVariablenVar-Dump einer Variableecho "<pre>"; var_dump($test); echo "</pre>"; View Update Delete
21MumpsVariablenVar-Dump einer VariableZW test S A(1,2)="Inhalt" ZWrite A Set ^GLOBAL1("sub1","sub2")="content" ZW ^GLOBAL1View Update Delete
84C#VariablenDarstellung eines Unicode Zeichens in C#//Hier wird in die Variable "semikolon" das Semikolon eingetragen var semikolon = (char)59;View Update Delete
86C#VariablenParsen von Datentypenvar d = (double)integer; var myButton = (Button)object;View Update Delete
129Bash ScriptVariablenWert einer Variable zuweisen# Aktuelles Verzeichnis in einer Variable setzen mydir="Mein Verzeichnis lautet $PWD" echo $mydirView Update Delete
164PythonVariablenAuflistung aller Variablenimport pprint a="This is a test" b=1 c=True pprint.pprint(locals()) #{'__builtins__': <module '__builtin__' (built-in)>, # '__doc__': None, # '__name__': '__main__', # '__package__': None, # 'a': 'This is a test', # 'b': 1, # 'c': True, # 'pprint': <module 'pprint' from '/usr/lib/python2.7/pprint.pyc'>} pprint.pprint(globals())View Update Delete
165MumpsVariablenAuflistung aller VariablenS A="This is a test" Set b=1 ZW ZWriteView Update Delete
182BatchVariablenDeklaration einer Variable@echo off SET myVariable=This is my content SET myPathVariableWithBlanks="C:\Temp\Path With Blanks\File.txt" echo %myVariable% REM This is my content echo %myPathVariableWithBlanks% REM "C:\Temp\Path With Blanks\File.txt"View Update Delete
183BatchVariablenWert einer Variable zuweisen@echo off cd C:\Temp REM Aktuelles Verzeichnis in einer Variable setzen SET mydir="Mein Verzeichnis lautet %CD%" echo %mydir% REM "Mein Verzeichnis lautet C:\Temp"View Update Delete
256PowerShellTextdateienTextDatei auslesen$myFilename = "file.txt" $fileContent = (Get-Content $myFilename)View Update Delete