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 
 
81T-SQLDatenbank, CollationCollation-Arten auflisten-- siehe auch: http://msdn.microsoft.com/de-de/library/ms187963.aspx SELECT * FROM fn_helpcollations()View Update Delete
82CachéTextdateienTextdatei schreibenSet file=##class(%File).%New("file.txt") Write file.Size Do file.Open("WSN") Do file.WriteLine("This is a line of text")View Update Delete
136PHPTextdateienTextdatei schreiben$datei = fopen("myfile.txt","w+"); // write rewind($datei); fwrite($datei, time()"); fclose($datei); View Update Delete
252PythonDateihandlingTextdatei schreiben# Modes # r: Read mode which is used when the file is only being read # w: Write mode which is used to edit and write new information to the file (any existing files with the same name will be erased when this mode is activated) # a: Appending mode, which is used to add new data to the end of the file; that is new information is automatically amended to the end # r+: Special read and write mode, which is used to handle both actions when working with a file myFile = open("myFile.txt","w") myFile.write("Hello World") myFile.close() View 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
85C#ArrayDeklarieren eines Arrays in C#// Array direkt befüllen string[] stringArray = {"a", "b", "c"}; // Array mit fester Länge string[] stringArray = new string[5];View Update Delete
86C#VariablenParsen von Datentypenvar d = (double)integer; var myButton = (Button)object;View Update Delete
87C#StringsString Leerstellen entfernenstring myString = " test "; Console.WriteLine(myString.Trim()); //Gibt: "test" aus.View Update Delete
88C#StringsString auf Wunschlänge zuschneidenstring myString = "Benzinverbrauch"; Console.WriteLine(myString.Substring(2, 8)); //Ausgabe: "nzinverb"View Update Delete
162PythonStringsString auf Wunschlänge zuschneidenmyString = "Benzinverbrauch" print myString[2:10] # Ausgabe: "nzinverb"View Update Delete