中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

Ruby正則表達式怎樣處理字符串

小樊
82
2024-10-24 07:54:30
欄目: 編程語言

在Ruby中,使用正則表達式處理字符串非常常見。以下是一些關于如何在Ruby中使用正則表達式的例子:

  1. 查找字符串中的匹配項:
str = "Hello, my name is Ruby."
regex = /Ruby/
match = str.match(regex)

if match
  puts "Found match: #{match[0]}"
else
  puts "No match found"
end
  1. 查找字符串中所有匹配項:
str = "There are 3 Rubies and 5 Rubies in the basket."
regex = /Ruby/gi
matches = str.scan(regex)

puts "Found #{matches.size} matches:"
puts matches.join(', ')
  1. 替換字符串中的匹配項:
str = "I like cats, cats are cute."
regex = /cats/
replacement = "dogs"
new_str = str.gsub(regex, replacement)

puts "Original string: #{str}"
puts "New string: #{new_str}"
  1. 使用捕獲組:
str = "The price of the item is $40."
regex = /\$(\d+)/
matches = str.scan(regex)

if matches
  puts "Found matches:"
  matches.each do |match|
    puts "Price: $#{match[0]}"
  end
else
  puts "No match found"
end

這些例子展示了如何在Ruby中使用正則表達式處理字符串。你可以根據需要調整正則表達式和替換字符串來完成不同的任務。

0
阿克陶县| 乐平市| 合作市| 康乐县| 镇坪县| 凉山| 桃江县| 读书| 读书| 义马市| 沁水县| 长岛县| 尼玛县| 宿州市| 江永县| 山阳县| 张北县| 鄱阳县| 通许县| 武汉市| 洞口县| 曲阜市| 佛学| 库车县| 南部县| 新津县| 驻马店市| 章丘市| 卢氏县| 翼城县| 小金县| 周至县| 梁山县| 阿图什市| 大渡口区| 库伦旗| 丽水市| 双柏县| 姜堰市| 田林县| 庆安县|