Arachnid/solidity-stringutils

concatenate three strings

bsollenb54 opened this issue · 2 comments

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()));