Use this regular expression to match ten digits only:
@"^d{10}$"
To find a sequence of ten consecutive digits anywhere in a string, use:
@"d{10}"
Note that this will also find the first 10 digits of an 11 digit number. To search anywhere in the string for exactly 10 consecutive digits and not more you can use negative lookarounds:
@"(?<!d)d{10}(?!d)"
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…