我有這應該創建一個新的數據庫,當用戶輸入/newdb nameofdatabase Telegram::Bot::Client.run(token) do |bot|
bot.listen do |message|
case message.text
when '/newdb.*/'
bot.api.send_message(chat_id: messag
在字符串中,我想使用re模塊查找長度大於4的所有單詞。 樣品輸入:This is good Python forum and its helping a lot to beginners. 輸出:['Python','helping','beginners] 下面我試過,但它不工作: match=re.findall(r'([\w]{4}).*',str1)