Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Panama"is a palindrome."race a car"is not a palindrome. Note: Have you consider that the
if语句 语法1 如果条件成立,执行if和end if 之间的语句. if 条件表达式 then plsql语句; end if; 语法2 if 条件表达式 then 条件成立时执行的语句; else 条件不成立时执行的语句; end if; 语法3 if 条件表达式1 then 条件1成立时执行的语句; elsif 条件表达式2 then 条件2成立时执行的语句; ... elsif 条件表达式n then 条件n成立时执行的语句; else 所有条件都不成立时执行的语句; end if; 例