Advertisement
terraplane

Untitled

Jun 24th, 2021
1,530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.53 KB | None | 0 0
  1. 2.7.2 :006 > s = "Type: MHT 860L, year 2010, 7436 hours, 4x4x4, extra pipes, tyres 445/65 R 22,5, q/c with bucket and forks\n2020"
  2.  => "Type: MHT 860L, year 2010, 7436 hours, 4x4x4, extra pipes, tyres 445/65 R 22,5, q/c with bucket and forks\n2020"
  3. 2.7.2 :007 > puts s
  4. Type: MHT 860L, year 2010, 7436 hours, 4x4x4, extra pipes, tyres 445/65 R 22,5, q/c with bucket and forks
  5. 2020
  6.  => nil
  7. 2.7.2 :008 > s.sub /\d+\z/, ''
  8.  => "Type: MHT 860L, year 2010, 7436 hours, 4x4x4, extra pipes, tyres 445/65 R 22,5, q/c with bucket and forks\n"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement