Logo

Programming-Idioms

  • Python
  • Php

Idiom #287 Number of bytes of a string

Assign to n the number of bytes in the string s.

This can be different from the number of characters. If n includes more bytes than the characters per se (trailing zero, length field, etc.) then explain it. One byte is 8 bits.

$n = strlen($s);
n = len(s.encode('utf8'))

Python strings are sequences of Unicode codepoints, the internal representation is implementation dependent. But you can easily determine the length of a specific byte encoding.
import 'dart:convert';
var n = utf8.encode(s).length;

New implementation...