- Mastering Metasploit
- Nipun Jaswal
- 47字
- 2021-06-25 21:35:53
The substring function
It's quite easy to find the substring of a string in Ruby. We just need to specify the start index and length along the string, as shown in the following example:
irb(main):001:0> a= "12345678" => "12345678" irb(main):002:0> a[0,2] => "12" irb(main):003:0> a[2,2] => "34"