How can I combine these two so my string only matches if it has at least one large letter and at least one number in it
return Regex.IsMatch(string,
@"\A(?=\P{Lu}*\p{Lu})(?=\P{Ll}*\p{Ll})\p{L}+\z");
//but this works only with Big and small Letter, i dont know how I include the numbers
"^[0-9]+$" //Numbers
@"\A(?=\P{Lu}*\p{Lu})(?=\P{Ll}*\p{Ll})\p{L}+\z")
//Letters which must receive at least one large