PHP » PYTHON |
login |
register |
about
|
PYTHON mb_strlen
is this article helpful?
|
Python replacement for PHP's mb_strlen
[
edit
| history
]
#!/usr/bin/env python # -*- coding: utf-8 -*- str = u'Привет!' print len(str) or #!/usr/bin/env python # -*- coding: utf-8 -*- def mb_strlen(string,encoding='utf-8'): return len(string.decode(encoding)) mb_strlen(PHP 4 >= 4.0.6, PHP 5) mb_strlen — Get string length Parameters
Return ValuesReturns the number of characters in string str having character encoding encoding . A multi-byte character is counted as 1. |
more
Recently updated
more
Most requested
more
Last requests
|