我无法在 Lua 中制作具有以下要求的函数:
- 将字符串
phone_number
和 2 位数字country_code
作为输入。 phone_number
形式为 {1 || ""}{country_code
}{10 位或 11 位手机号码}
我需要输出 10 位或 11 位的手机号码。
示例 I/O:
phone_number
=“552234332344”,country_code
=“55”=>“2234332344”
phone_number
=“15522343323443”,country_code
=“55”=>“22343323443”
谢谢!