Skip to content
View AFunnyKitty's full-sized avatar
Block or Report

Block or report AFunnyKitty

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Cookie Cookie
    1
    function getCookie(cookie_name)
    2
    {
    3
        var allCookies = document.cookie;
    4
        var cookie_pos = allCookies.indexOf(cookie_name);
    5
        if (cookie_pos != -1)
  2. JS 正则 JS 正则
    1
    //  (?!pattern)为正向否定预查,(?<!pattern)为反向否定预查
    2
    
                  
    3
    // 判断密码规则
    4
    /(?!^[a-z]*$)(?!^[A-Z]*$)(?!^[0-9]*$)(?!^[_\W]*$)^.{8,16}$/.test("12345678q")
    5
    
                  
  3. 炫酷的样式 炫酷的样式
    1
        background: linear-gradient(135deg, #5bc8a9 0%, #47b7d1 50%, #6063ef 100%);
  4. 正则 NET 正则 NET
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Linq;
    4
    using System.Text;
    5
    using System.Text.RegularExpressions;