将python字符串转化为标准C字符串并获取长度

# -*- coding: utf-8 -*-
import ctypes as ct


def python_string_to_c_string(python_string):
    str_tmp = python_string.encode('utf-8')  # 使用utf-8对字符串重新编码
    return ct.c_char_p(str_tmp)  # 转化为标准C的字符串格式


if __name__ == '__main__':
    tmp = python_string_to_c_string('testddd')
    # 使ctypes中的方法查看地址空间的内容, 这种遇到'\0'就会停止,
    # 如果要看更多的话可以加上长度参数, ct.string_at(addr, len)
    print('转换成标准C的字符串: ', ct.string_at(tmp))
    print('标准C字符串的长度: ', len(ct.cast(tmp, ct.c_char_p).value))  # 获取字符串长度

输出:

转换成标准C的字符串:  b'testddd'
标准C字符串的长度:  7

你可能感兴趣的:(python,pyQt,py)