Links
old
Recent site activity
R
edited by Andreas Jostel
Diab
removed by A J
home
removed by A J
attachment removed by A J
who
removed by A J
home
attachment removed by A J
where
removed by A J
home
attachment removed by A J
when
removed by A J
View All
Navigation
1-Endocrine
Home
>
Comp
>
Ruby
>
The Ruby Programming Language
s="hello"
s.concat(" world")
# s << "world"
s.insert(5, "there")
# s[5]="there"
s.slice(0,5)
s.slice!(5,6)
# s[5,6]=""
s.eql?("hello world")
# s=="hello world"
Comments