-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
:facepalm: Thanks for your help!
-
@jguinch Thanks! Sorry! Is there a way to validate if a string is in that format?
-
@jchd Ooops! I think you misunderstood, here is a example: ; :<nick>!<host mask> PRIVMSG <channel/nick> :<message> #include <Array.au3> Local $sIn = ":TheDcoder!anything_could_be_here PRIVMSG TheDcoder :Foobar" Local $aOut = StringRegExp($sIn, "<[^>]*>", 3) _ArrayDisplay($aOut) I used <> to denote variable content Thanks in Advance, TD
-
I have a wired Headphone (bought it for $3), it works very well! I only use it when I watch videos though, TD
-
@jchd Perfect! Thanks!
-
Hello , I am trying to find the best way to spilt this string: :<nick>!<host mask> PRIVMSG <channel/nick> :<message> into an array like this: Global Enum $SENT_BY, $HOST_MASK, $SENT_TO, $MESSAGE $aArray[$SENT_BY] = "<nick>" $aArray[$HOST_MASK] = "<host mask>" $aArray[$SENT_TO] = "<channel/nick>" $aArray[$MESSAGE] = "<message>" (Stuff between <> is dynamic) I can do that with inefficient code but I think it is possible to do it more efficiently with RegEx Thanks in Advance! TD P.S Yeah, that is the raw format of a message received in IRC
-
@rcmaehl Is it possible to support SSL? Sorry, I know that it would be hard to implement, but I am a TCP & UDP noob TD
-
I agree that it has potential, just needs some polishing.
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
Many people use IRC The next best person able to answer someone's question who does use IRC will answer the question , And I don't believe that would be counter-productive. I am aware of that, I bumped this thread to prevent it from slowly dying like other threads (and to create some discussion). TD
-
@JohnOne That is a good alternative too
-
I recommend to migrate all your passwords in chrome (if any) to a KeePass database instead of importing them in Fireofox P.S That is what I did before changing from Chrome to Firefox
-
I think you are talking about the AutoIt v3 sub-forum, this is the IT Administration sub-forum
-
Use linux, windows is a resource hungry beast! You can start from Zorin OS (Core Edition)
-
You can make a small script which covers your privacy as well demonstrate what you are trying to do. This will help all of us P.S This will help you learn to code better too , Believe me, I did!