[ create a new paste ] login | about

Link: http://codepad.org/1BNNwoh6    [ raw code | output | fork ]

Ruby, pasted on Oct 8:
1
2
3
4
5
input = 'journals/cl/SantoNR90:::Michele Di Santo::Libero Nigro::Wilma Russo:::Programmer-Defined Control Abstractions in Modula-2'

str = input.split(':::')[1].split('::') #The important part

print(str.join("\n")) #So we can see the result


Output:
1
2
3
Michele Di Santo
Libero Nigro
Wilma Russo


Create a new paste based on this one


Comments: