diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-05-25 22:01:26 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-30 21:44:33 +0800 |
commit | 17f23629f1c6bbe1704482ccf75071fdbb3ec17f (patch) | |
tree | 07e43228e2fdb99ced583397d63f17009b536a4e /docs/frequently-asked-questions.rst | |
parent | 9862d61a5a1f3038f4933571c4d0973673f90e93 (diff) | |
download | dexon-solidity-17f23629f1c6bbe1704482ccf75071fdbb3ec17f.tar.gz dexon-solidity-17f23629f1c6bbe1704482ccf75071fdbb3ec17f.tar.zst dexon-solidity-17f23629f1c6bbe1704482ccf75071fdbb3ec17f.zip |
Added @Arachnid's string library
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r-- | docs/frequently-asked-questions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index c0d9fd15..88775e4c 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -406,7 +406,7 @@ What are some examples of basic string manipulation (``substring``, ``indexOf``, ================================================================================================== There are some string utility functions at `stringUtils.sol <https://github.com/ethereum/dapp-bin/blob/master/library/stringUtils.sol>`_ -which will be extended in the future. +which will be extended in the future. In addition, Arachnid has written `solidity-stringutils <https://github.com/Arachnid/solidity-stringutils>`_. For now, if you want to modify a string (even when you only want to know its length), you should always convert it to a ``bytes`` first:: |