-1

Visual Basic .NET 中的 PHP ereg() 等价物是什么?

我正在尝试将此tripcode编码器从PHP翻译成VB.NET

function tripcode($name)
{
    if(ereg("(#|!)(.*)", $name, $matches))
    {
        $cap  = $matches[2];
        $cap  = strtr($cap,"&", "&");
        $cap  = strtr($cap,",", ",");
        $salt = substr($cap."H.",1,2);
        $salt = ereg_replace("[^\.-z]",".",$salt);
        $salt = strtr($salt,":;<=>?@[\\]^_`","ABCDEFGabcdef"); 
        return "!".substr(crypt($cap,$salt),-10)."";
    }
}
4

1 回答 1

0
        $Str = "#your_tripcode_password"
        Dim Reg As New Regex("(#|!)(.*)")
        If Reg.IsMatch(Str) Then
            Dim Cap$ = Reg.Matches(Str)(0).Groups(2).Value

        End If
于 2013-12-01T00:48:00.470 回答