Jump to content

Fanfare

Members
  • Posts

    310
  • Joined

  • Last visited

Posts posted by Fanfare

  1. I know this volunteer position will attract those power-tripping minded people to apply.

     

    This reminds me of the old MSN days where lots of chatters apply to be a room host, wasting their lives to monitor chat rooms where they were never appreciated and liked. And the turnover rate was very high, because that chat manager Vickie was a classic example of power tripper. I'm glad those days were over and became part of my memory.

     

    Again, I'm not against those who're interested in spending their time to help develop a chat network. This is just my rant is all.

  2. Adding to err0r's suggestion, you can include the -l switch for your set command. The -l switch makes it local:

     

    set -l %a value

    set -l %b value

     

    This makes them function exactly the same as the /var option.

     

    The -l switch is undocumented.

  3. If you happen to use AVG's link scanner, you should be protected, as it will block the malicious website upon landing and ask to proceed or close it. It's a must-have browser add-on every should install when browsing online. It works similarly as Mcafee's site advisor but AVG's is way better in my opinion. :yes:

  4. Oh cool thanks, that makes a lot of sense now. So I want to strip out the font code and make sure it doesn't match ^. or ^-. Could I do something like:

     

    /^##\*.*\*##[^\.^-]/gS

     

    You can use regex's negative look ahead:

    /(?!\.|\^|-)##\*.*\*##/
    If you mean that you want to ignore both the symbol "^." and "^-." This pattern should do the trick. The dot and the caret symbol are to be escaped because they have special meanings in regex.
  5. /^[^\.^-]/gS

     

     

    What does it do?

     

    It will match one character to exclude the "-" symbol and disregard the rest from the start of a string. The /g modifier means to match more than one match respectively. The /S is to strip control codes, mainly work for mIRC and not a standard regex modifier.
×
×
  • Create New...