python转c语言的工具_Python小部件——字符串到C语言数组,python,工具,转

总述

嵌入式端做webserver时,一般将html文件保存到一个数组里,此时就需要对html文件的内容进行转换了。

具体实现

编程语言:Python

主要API介绍:

os.path.dirname 获取一个路径的路径名

os.path.basename 获取文件名

os.path.join 连接路径目录加文件名

open 打开文件

replace 替换字符

import os

import sys

def html_toarray(html_path):

"""

:param html_path: html的路径

:return: NULL

"""

save_c_array_path = os.path.join(os.path.dirname(html_path),os.path.basename(html_path).split(".")[0] + ".h") #保存数组的路径

print(save_c_array_path)

with open(html_path, "r", encoding='UTF-8') as f:

nlines = f.readlines()

string_splite = []

for i in nlines:

i = i.strip() #除首尾空格

if len(i) > 0:

i = i.replace("\\", "\\\\").replace("\"", "\\\"").replace('\n', '') # 替换" 替换\

i = i + "\\r\\n\\"

string_splite.append(i)

with open(save_c_array_path, "w", encoding='UTF-8') as f:

f.write("static const char c_array[] = { \"\\\n")

for i in string_splite:

f.write(i + "\n")

f.write("\"};")

print("convert successed\r\n")

html_toarray(r"xxxxxxxxxxxx")

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值