Identify if a string is a number

前端 未结 25 3079
無奈伤痛
無奈伤痛 2020-11-22 00:13

If I have these strings:

  1. \"abc\" = false

  2. \"123\" = true

  3. \"ab2\"

25条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-22 00:17

    Try the reges below

    new Regex(@"^\d{4}").IsMatch("6")    // false
    new Regex(@"^\d{4}").IsMatch("68ab") // false
    new Regex(@"^\d{4}").IsMatch("1111abcdefg")
    new Regex(@"^\d+").IsMatch("6") // true (any length but at least one digit)
    

提交回复
热议问题