Binary strings: Difference between revisions

Content added Content deleted
(Added Arturo implementation)
Line 172: Line 172:


<lang rebol>; creation
<lang rebol>; creation

x: "this is a string"
x: "this is a string"
y: "this is another string"
y: "this is another string"
Line 202: Line 201:
print z
print z


; replace occurences of substring
; replace occurrences of substring
print replace z "t" "T"</lang>
print replace z "t" "T"</lang>