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 101-110 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
34CachéCaché-Spezifisch, Prozesse/JobsVariableninhalt eines fremden Prozesses ermitteln; Important: You musn't check variables in your own job, it will result in a <PARAMETER>-Error! Set checkjob=1234 Set checkvar="foo" ; Check if job is not my own Quit:checkjob=$Job ; Check if Job exists und prompt the content of the varible foo If $Data(^$Job(checkjob)) W !,$ZUtil(88,2,checkjob,checkvar) ; Prompts the content of the variable foo, maybe it is 'bar' ;-)View Update Delete
259PowerShellStringsMultiline String Variable# In PowerShell such variables are called: Here-Strings $mySQLString = @" SELECT 1 FROM dbo.TestTable WHERE 1=1 "@ View Update Delete
273T-SQLStringsLeerzeichen vor/hinter String entfernenSELECT LTRIM(RTRIM(' x text x '))View Update Delete
274PythonStringsLeerzeichen vor/hinter String entfernenmyText = " x text x \r\n" print myText.strip()View Update Delete
31PHPStringsString nach Delimenter zerlegen$myString = "A;B;C;D;E"; $myPieces = explode(";",$myString); // erzeigt ein Array mit den einzelnen Zeichen echo $myPieces[2]; // gibt C ausView Update Delete
287MySQLStringsAnzahl an Zeichen in einem String ermitteln-- Gets only result with 4 "/" in the the field relativePath SELECT id ,albumRoot ,relativePath ,date ,caption ,collection ,icon ,LENGTH(relativePath) - LENGTH(REPLACE(relativePath,'/','')) AS `occurrences` FROM Albums WHERE LENGTH(relativePath) - LENGTH(REPLACE(relativePath,'/',''))=4 ; View Update Delete
32JavaStringsString nach Delimenter zerlegenString myString = new String; String[] myPieces = new String; myString = "A;B;C;D;E"; myPieces = myString.split(";"); // erzeugt ein Arrey mit den einzelnen Zeichen System.out.println(myPieces[2]); // gibt C ausView Update Delete
33MumpsStringsString nach Delimenter zerlegenmyString="A;B;C;D;E" Write !,$Piece(myString,";",3) // gibt C ausView Update Delete
289PL/pgSQLStringsFührende Nullen vor einer ZahlWITH cte_example AS ( SELECT 5 AS int_example UNION ALL SELECT 10 AS int_example UNION ALL SELECT 50 AS int_example ) SELECT int_example, RPAD(int_example::text, 3, '0'), LPAD(int_example::text, 3, '0') FROM cte_exampleView Update Delete
291SQLiteStringsFührende Nullen vor einer ZahlWITH cte_example AS ( SELECT 5 AS int_example UNION ALL SELECT 10 AS int_example UNION ALL SELECT 50 AS int_example ) SELECT int_example, substr('0000000'||ROW_NUMBER() OVER(ORDER BY int_example)||'00', -8, 8) AS example_result FROM cte_example ;View Update Delete