Citrine/EN | Manual

[ String ] replace: [ String ] with: [ String ]

☞ x ≔ ‘1...2...3’.
x replace: ‘...’ with: ‘,’.
✎ write: x, stop.
1,2,3