Find a numerical regular expression that ends with n zeros

such as title: find a numerical regular expression that ends with n zeros.
Thank you

Mar.02,2021

n > 0:

 /^[0-9]*[0]+$/  

any n:

/^[0-9]*[0]{n}$/

/^[0-9]*[0]{n}$/

^\d*[1-9]0{n}$
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b31b51-2bdac.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b31b51-2bdac.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?