Binary strings: Difference between revisions

m
→‎Icon and Unicon: header simplification
No edit summary
m (→‎Icon and Unicon: header simplification)
Line 695:
strReplace old new orig = subRegex (mkRegex old) orig new</lang>
 
== {{header|Icon}} and {{header|Unicon }}==
==={{headerworks with|Unicon}}===
Icon and Unicon strings strings are variable length and unrestricted. See [[Logical_operations#Icon_and_Unicon|Logical Operations]] for ways to manipulate strings at the bit level.
==={{header|Icon}}===
<lang Icon>s := "\x00" # strings can contain any value, even nulls
s := "abc" # create a string
Line 730:
 
end</lang>
==={{header|Unicon}}===
The Icon solution works in Unicon.
 
=={{header|J}}==
Anonymous user