Commit 56f37f1d authored by gabrieldemarmiesse's avatar gabrieldemarmiesse

Moved an example of decoding cpp strings to the examples directory.

parent 04780910
# distutils: language = c++
from libcpp.string cimport string
def get_ustrings():
cdef string s = string(b'abcdefg')
ustring1 = s.decode('UTF-8')
ustring2 = s[2:-2].decode('UTF-8')
return ustring1, ustring2
...@@ -392,12 +392,9 @@ the Unicode string into a temporarily created Python bytes object ...@@ -392,12 +392,9 @@ the Unicode string into a temporarily created Python bytes object
and then copies its buffer into a new C++ string. and then copies its buffer into a new C++ string.
For the other direction, efficient decoding support is available For the other direction, efficient decoding support is available
in Cython 0.17 and later:: in Cython 0.17 and later:
cdef string s = string(b'abcdefg') .. literalinclude:: ../../examples/tutorial/string/decode_cpp_string.pyx
ustring1 = s.decode('UTF-8')
ustring2 = s[2:-2].decode('UTF-8')
For C++ strings, decoding slices will always take the proper length For C++ strings, decoding slices will always take the proper length
of the string into account and apply Python slicing semantics (e.g. of the string into account and apply Python slicing semantics (e.g.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment