Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/27/2018 in Posts

  1. It should be possible with this information. https://blogs.windows.com/msedgedev/2015/08/27/creating-your-own-browser-with-html-and-javascript/
    2 points
  2. @dadalt95 you seem not to have bothered to read the forum rules during your time here. I suggest you do so now before posting again, and you will see why this thread is locked.
    1 point
  3. Not sure why no one seems able to read this banner at the top of the DEV forum: Moved to the appropriate forum.
    1 point
  4. Hello adelbak, I need to ask you a question: Are you intending to increment twice the "i" variable in the for loop ? the first for statement initialize i to 0 and j to 0 and an the end of the for loop, I can see is i++, which means, you are incrementing "i" by 1 and also, the for loop when it reaches the close brace "}" will also check for the condition if "i" still less than 15 , if that ok, also increment "i" again. So you are incrementing "i" twice . Also, I can see that you are incrementing "j" at the same time. My question is : Are you intentionally incrementing "i" twice ? if yes, then last "i++" should be removed and then the for loop at the beginning should be like this if I understood your code correctly: int i=0, j=0; //for (i=0, j=0; i < 15; i++, j++) for (; i < 15;)     {         if (inp_imei[i] < '0' || inp_imei[i] > '9')         {             return 1;         }         out_imei[j] = (inp_imei[i] - '0');         if (i >= 14)             break;         if (inp_imei[i+1] < '0' || inp_imei[i+1] > '9')         {              return 1;         }         out_imei[j] += ((inp_imei[i+1] - '0') << 4);         out_imei[j] = out_imei[j] ^ out_mask[j];         //i++; i+=2; j++;     } is that what you intended ? to increment "i" twice ? and "j" will be always incremented to 1 ?
    1 point
  5. ;~ 1.SamanthaRichardson - Find this pattern ie twoCaps in single word ;~ Insert space before second Capital letter. $sIutputstring = "SamanthaRichardson" $sOutputstring = StringRegExpReplace($sIutputstring, "\w\K(?=[[:upper:]])", " ") ConsoleWrite($sIutputstring & " => " & $sOutputstring & @CRLF) ;~ 2.dson407 - word continued by numbers without space ;~ Insert space before Number $sIutputstring = "dson407" $sOutputstring = StringRegExpReplace($sIutputstring, "[A-Za-z]\K(?=\d)", " ") ConsoleWrite($sIutputstring & " => " & $sOutputstring & @CRLF) ;~ 3.cer"S - No space before doubleQuote ;~ Insert space before doubleQuote $sIutputstring = "cer""S" $sOutputstring = StringRegExpReplace($sIutputstring, "[A-Za-z]\K(?="")", " ") ConsoleWrite($sIutputstring & " => " & $sOutputstring & @CRLF) ;~ 4.ple.comBu - letters after .com ;~ Insert space after .com $sIutputstring = "ple.comBu" $sOutputstring = StringRegExpReplace($sIutputstring, "[A-Za-z]\K(?=\.com)", " ") ConsoleWrite($sIutputstring & " => " & $sOutputstring & @CRLF)
    1 point
  6. I find out what happend:
    1 point
  7. 1 line Run("calc.exe")
    1 point
  8. JLogan3o13

    windows hacks

    How many times do we need to go over this before people get it? If a Mod steps into a thread with an obvious attempt to determine legitimacy, stay out of it until the all-clear. Don't guess at what you think the OP meant, don't offer witty comments, don't offer to help, just use some common sense and wait.
    1 point
  9. From the online help -- So, you'll need to use _FFObj, like this -- MsgBox(0, "_FFCmd('outerHTML'", _FFObj($sObject, 'outerHTML'))
    1 point
×
×
  • Create New...