Function isCarCode

  • 检查是否为 carCode string 车牌号

    Parameters

    • value: string

      字符串值

    Returns boolean

    isCarCode('粤B68928'); /// true
    isCarCode('粤-B68928'); /// true
    isCarCode('粤 B68928'); /// true
    isCarCode('粤B.68928'); /// true
    isCarCode('粤B 68928'); /// true
    isCarCode('广东 B12345'); /// false