跳过以单词开头的变量并结束BY编号[0-9] [关闭]

I have this array arr("PAPER","SHEET","SHEET1","SHEET2", "SHEET3") with a loop foreach(key,value). I will skip the variable that start with "SHEET" and ends with a number [0-9]

How to do this with preg_math or other REGEX?

if(Condition){
Code...
}

Something like:

if (preg_match('/^SHEET\d+$/i', $value)) {
    continue;
}