Server IP : 66.29.132.122 / Your IP : 3.144.248.178 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/thread-self/root/proc/thread-self/root/opt/alt/ruby18/share/ri/1.8/system/String/ |
Upload File : |
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Inserts <em>other_str</em> before the character at the given <em>index</em>, modifying <em>str</em>. Negative indices count from the end of the string, and insert <em>after</em> the given character. The intent is insert <em>aString</em> so that it starts at the given <em>index</em>. - !ruby/struct:SM::Flow::VERB body: " "abcd".insert(0, 'X') #=> "Xabcd"\n "abcd".insert(3, 'X') #=> "abcXd"\n "abcd".insert(4, 'X') #=> "abcdX"\n "abcd".insert(-3, 'X') #=> "abXcd"\n "abcd".insert(-1, 'X') #=> "abcdX"\n" full_name: String#insert is_singleton: false name: insert params: | str.insert(index, other_str) => str visibility: public