solidity-stringutils
solidity-stringutils copied to clipboard
concatenate three strings
How would concatenate three strings?
var 2 = "abc".toSlice().concat("def".toSlice().concat("ghi".toSlice()));
What am I missing?
Having the same issue. It only seems to concat the first two strings for me.
@bsollenb54 It should be: var 2 = "abc".toSlice().concat("def".toSlice().toSlice().concat("ghi".toSlice()));