开发者

check input for UTF-8, count characters, use regular expressions

开发者 https://www.devze.com 2023-01-20 08:19 出处:网络
I want to write a C-program that gets some strings from input. I want to save them in a MySQL database.

I want to write a C-program that gets some strings from input. I want to save them in a MySQL database. For security I would like to check, if the input is a (possible) UTF-8 string, count the number of characters and also use some regular expressions to validate the input.

Is there开发者_运维知识库 a library that offers me that functionality?

I thought about to use wide characters, but as far as I understood, the fact if they are supporting UTF-8 depends on the implementation and ist not defined by a standard. And also I would be missing the regular expressions.


PCRE supports UTF-8. To validate the string before any processing, the W3C suggests this expression, which I re-implemented in plain C, but PCRE already automatically checks for UTF-8 in accordance to RFC 3629.

0

精彩评论

暂无评论...
验证码 换一张
取 消