91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

Ruby正則表達式如何提取信息

小樊
82
2024-11-06 03:30:36
欄目: 編程語言

在Ruby中,使用正則表達式(Regular Expression)可以輕松地提取字符串中的特定信息。以下是一些基本示例,說明如何使用Ruby的正則表達式來提取信息:

  1. 導入re模塊:
require 're'
  1. 創建一個包含待提取信息的字符串:
text = "The price of the item is $45 and the discount is 10%."
  1. 使用正則表達式匹配和提取信息:
  • 提取價格:
price_pattern = /\$(\d+(?:\.\d{1,2})?)/
price = text.match(price_pattern)[1] # 提取價格,結果為 "45"
  • 提取折扣百分比:
discount_pattern = /\s*(\d+(?:\.\d{1,2})?)%\s*/
discount = text.match(discount_pattern)[1] # 提取折扣百分比,結果為 "10"
  • 提取單詞:
word_pattern = /\b(\w+)\b/
words = text.scan(word_pattern) # 提取所有單詞,結果為 ["The", "price", "of", "the", "item", "is", "$45", "and", "the", "discount", "is", "10%"]
  • 提取電話號碼:
phone_pattern = /\b(\d{3})[-. ](\d{3})[-. ](\d{4})\b/
phone_number = text.match(phone_pattern)[1] # 提取電話號碼,結果為 "45"

這些示例展示了如何使用Ruby的正則表達式來提取字符串中的價格、折扣百分比、單詞和電話號碼等信息。你可以根據需要修改正則表達式以匹配特定的信息。

0
安达市| 大丰市| 松桃| 新龙县| 白朗县| 尼木县| 安顺市| 琼海市| 上饶县| 新乐市| 凭祥市| 喀喇沁旗| 庆城县| 桂平市| 安泽县| 渭南市| 招远市| 嘉黎县| 奎屯市| 昌邑市| 禄劝| 沧州市| 锦州市| 新宁县| 淅川县| 名山县| 湖南省| 稻城县| 临湘市| 句容市| 翁牛特旗| 新晃| 庆城县| 湖口县| 通河县| 泸水县| 肥西县| 高阳县| 安阳市| 怀安县| 老河口市|