1
0
mirror of https://github.com/renbaoshuo/UOJ-Luogu-RemoteJudge.git synced 2025-03-31 01:57:04 +00:00

6 lines
103 B
PHP

<?php
function validateLuoguProblemId($str) {
return preg_match('/^(P|B)[1-9][0-9]{3,5}$/', $str);
}