0

だから私は使用を許可しようとしています!何かの接頭辞として。ここにいくつかの正規表現がありますが、その方法がほとんどわかりません。

if inp.chan == inp.nick:  # private message, no command prefix
    prefix = r'^(?:[!!]?|'
else:
    prefix = r'^(?:[!]|'

command_re = prefix + inp.conn.nick
command_re += r'[:,]+\s+)(\w+)(?:$|\s+)(.*)'

[!]を変更することでコマンドのプレフィックスを変更できますが、プレフィックスを2倍にできるようにしたいと思います。たとえば、!!testが機能します。ありがとう。

編集:

import re
import random
from util import hook, http

re_lineends = re.compile(r'[\r\n]*')
command_prefix = re.compile(r'^\!+')

@hook.command(command_prefix)
def exl(inp,nick=""):
    ""
res = http.get("http://eval.appspot.com/eval", statement=inp).splitlines()

if len(res) == 0:
    return
res[0] = re_lineends.split(res[0])[0]
if not res[0] == 'Traceback (most recent call last):':
    return res[0]
else:
    return res[-1]

@ hook.command:

def _hook_add(func, add, name=''):
    if not hasattr(func, '_hook'):
        func._hook = []
    func._hook.append(add)

    if not hasattr(func, '_filename'):
        func._filename = func.func_code.co_filename

    if not hasattr(func, '_args'):
        argspec = inspect.getargspec(func)
        if name:
            n_args = len(argspec.args)
            if argspec.defaults:
                n_args -= len(argspec.defaults)
            if argspec.keywords:
                n_args -= 1
            if argspec.varargs:
                n_args -= 1
            if n_args != 1:
                err = '%ss must take 1 non-keyword argument (%s)' % (name,
                            func.__name__)
                raise ValueError(err)

        args = []
        if argspec.defaults:
            end = bool(argspec.keywords) + bool(argspec.varargs)
            args.extend(argspec.args[-len(argspec.defaults):
                        end if end else None])
        if argspec.keywords:
            args.append(0)  # means kwargs present
        func._args = args

    if not hasattr(func, '_thread'):  # does function run in its own thread?
        func._thread = False
4

1 に答える 1

0

Do you mean something like r'^\!+'? This will match any number of exclamation points at the start of a string.

>>> import re
>>> regex = re.compile(r'^\!+')
>>> regex.match("!foo")
<_sre.SRE_Match object at 0xcb6b0>
>>> regex.match("!!foo")
<_sre.SRE_Match object at 0xcb6e8>
>>> regex.match("!!!foo")
<_sre.SRE_Match object at 0xcb6b0>

If you want to limit yourself to 1 or 2 !, then you could use r'^\!{1,2}':

>>> regex = re.compile(r'^\!{1,2}')
>>> regex.match('!!!foo').group(0)  #only matches 2 of the exclamation points.
'!!'
>>> regex.match('!foo').group(0)
'!'
>>> regex.match('!!foo').group(0)
'!!'
于 2013-01-10T18:41:39.753 に答える