Assuming instr is required, the following 14 results were found.
1, 0)) Student, SUM(IF(t2.VisitorType='Anonymous', 1, 0)) Guests FROM ( SELECT b.user_name User, CASE WHEN INSTR(b.user_name, '@staff') THEN 'Staff' WHEN INSTR(b.user_name, '@bournemouth') THEN 'Student' WHEN t1.ID=0 THEN 'Anonymous' END VisitorType,...
1, 0)) 'Other', COUNT(t1.VisitorBrowser) 'Total' FROM (SELECT a.DateTimeStamp Date, CASE WHEN INSTR(a.VisitorUAgent, 'MSIE ') THEN 'MSIE' WHEN INSTR(a.VisitorUAgent, 'Firefox') THEN 'Firefox' WHEN INSTR(a.VisitorUAgent, 'Safari') THEN 'Safari' WHEN...
SearchButton_Out:=A_ScriptDir "\images\program\icons\search_globe.png" If (CurrControl PrevControl and not InStr(CurrControl, " ")) { ToolTip ; Turn off any previous tooltip. SetTimer, DisplayToolTip, 1000 If (PrevControl="SearchButton") GuiControl,,...
is to convert a given SQL date or a European date formatted value: FormatDate(val) { ; SQL format (yyyy-mm-dd HH:mm:ss) IfInString, val, - { StringReplace, val, val, -,,All StringReplace, val, val, :,,All StringReplace, val, val, %A_Space%,,All } ;...
is a marker for a value located after Needle1a Needle2a := " " ; Needle2a is the closing marker ; get table HTML Needle1 := InStr( Haystack, Needle1a, false, NeedleMarker ) Needle1 := InStr( Haystack, Needle1b, false, Needle1 ) + StrLen( Needle1b )...
migration of a Joomla! CMS running version 2.5.11 to an instance of Joomla! CMS version 3.4.1. I would consider the below instructions an ALPHA version as it is considered unstable for official use... Saying that this is how I upgraded my own personal...
Text, vHeading x10 y10 w400, %v_SubTitle% Gui, Font, s7 w400 c999999, Verdana Gui, Menu, MainMenu Gui, Add, Text, vAttachmentInstruction1 x12 y35 w400, Select the file which contains the foreign key and the file name(s) Gui, Add, Text,...
Internet Explorer" ) For pwb in ComObjCreate( "Shell.Application" ).Windows If ( pwb.LocationName = Name ) && InStr( pwb.FullName, "iexplore.exe" ) Return pwb } Code: ; AHK Basic: IEGet( name="" ) { IfEqual, Name,, WinGetTitle, Name, ahk_class IEFrame ;...
"\Preferences" ; Get the preferences file from the profile FileRead, OutputContent, %PreferenceFile% NameStart := InStr(OutputContent, """name"":""")+8 NameEnd := InStr(OutputContent, """", false, NameStart+1) NameLength := NameEnd - NameStart...
".") ; remove converter comments from file name v_NewName := "" Loop % a_ThisFileName.MaxIndex() { v_FoundUnderScore := InStr( a_ThisFileName[A_Index], "_") if( a_ThisFileName[A_Index] != "EDIT" && v_FoundUnderScore...
ELSIF p_original_datatype='FLOAT' THEN -- Determined submitted value as 'FLOAT'; v_char_at := (INSTR(p_original_value, '.')-1); v_rand_param1 := POWER(10, (LENGTH(p_original_value) - v_char_at)); -- should yield eg. 10 v_rand_param2 := POWER(10,...
; function to loop through files/subfolders and total the file sizes GetFileFolderSize(fPath="") { FolderSize := 0 if InStr(FileExist(fPath), "D") { Loop, %fPath%\*.*, 1, 1 FolderSize += %A_LoopFileSize% Size := % FolderSize ? FolderSize : 0 Return,...
kind { Return } i:=0, nParams:=p.Count(), fex.SetCapacity(nParams + 11) While ( i++...
will NOT be returned -- Other REGEXP Functions for Oracle: -- -- REGEXP_REPLACE(country_name, '(.)', '\1 ') -- -- REGEXP_INSTR(email, '\w+@\w+(\.\w+)+') > 0 -- -- REGEXP_SUBSTR('oracle', 'o r a c l e', 1, 1, 'x') Microsoft T-SQL Note the circumflex/hat...