Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 618 Bytes

strings.rst

File metadata and controls

37 lines (22 loc) · 618 Bytes

Strings

.. seealso::

    .. toctree::
        :maxdepth: 3

        strfun.rst
        sscanf.rst

    - :ref:`strdef <hoc_keyword_strdef>`


.. hoc:function:: sprint

    Syntax:
        ``sprint(strdef, "format", args)``

    Description:
        Prints to a string. See :hoc:func:`printf` for the description of the format.



.. hoc:function:: strcmp

    Syntax:
        ``x = strcmp("string1", "string2")``

    Description:
        return negative, 0, or positive value
        depending on how the strings compare lexicographically.
        0 means they are identical.