rgheck wrote:

What's the right way to find out if the first character of a docstring is lowercase? Should I do something like: ucs4_to_qchar(c).isLower()?

You also want to check that the character is _in_ the ucs2 range.

if (!is_utf16(c))
   return true;
return ucs4_to_qchar(c).isLower();

Abdel.

PS: Happy new year to you all and your families.

Reply via email to