[lang-ref] ( string_character_size ) ( bash )

@test "string character size" {
	# "${#s}"
	s="ABC"
	[ "${#s}" -eq 3 ]

	s="あいう"
	[ "${#s}" -eq 3 ]
}