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 151-160 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
115SSRSZahlen/RechnenDIV/0' siehe auch: http://blogs.msdn.com/b/bwelcker/archive/2006/09/26/end-of-amnesia-_2800_avoiding-divide-by-zero-errors_2900_.aspx =IIf(Fields!SecondVal.Value = 0, "0", Fields!FirstVal.Value*100 / IIf(Fields!SecondVal.Value = 0, 1, Fields!SecondVal))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