@Ning Zhu Thanks for reaching out. Azure Functions uses the NCronTab library to interpret NCRONTAB expressions. NCRONTAB expression supports both five field and six field formats. The sixth field position is a value for seconds which is placed at the beginning of the expression. For more details you can refer to this document.
You can refer to below NCrontab Expression Tester: https://ncrontab.swimburger.net/
Alternative: https://crontab.guru/
Unfortunately, as there is no CRON expression as per your requirement which will not execute between 23:30 to 00:30 everyday.
The workaround will be handling this in your code. Your function will get executed every 15 minutes using the CRON 0 */5 * * * *
Inside your function app you will have condition to check the current time and if the current time doesn't fall between 23:30 to 00:30 then execute your business logic.
Feel free to get back to me if you have any queries or concerns.
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.