千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:郑州千锋IT培训  >  技术干货  >  文本处理用c还是用python

文本处理用c还是用python

来源:千锋教育
发布人:xqq
时间: 2023-11-12 18:48:46

文本处理python与c的对比:如下

c++语言:

C++语言实现C++中没有实现split功能的函数,下面用C++STL中的一些函数模拟实现split功能。#include#include#include#includeusingnamespacestd;/*

@in,src:待分割的字符串

@in,delim:分隔符字符串

@in_out,dest:保存分割后的每个字符串

*/voidsplit(conststring&src,conststring&delim,vector&dest){

stringstr=src;

string::size_typestart=0,index;

stringsubstr;

index=str.find_first_of(delim,start);//在str中查找(起始:start)delim的任意字符的第一次出现的位置

while(index!=string::npos)

{

substr=str.substr(start,index-start);

dest.push_back(substr);

start=str.find_first_not_of(delim,index);//在str中查找(起始:index)第一个不属于delim的字符出现的位置

if(start==string::npos)return;

index=str.find_first_of(delim,start);

}}intmain(){

ifstreaminfile("test.txt",ios::in);

vectorresults;

stringword;

stringdelim("");

stringtextline;

if(infile.good())

{

while(!infile.fail())

{

getline(infile,textline);

split(textline,delim,results);

}

}

infile.close();

vector::iteratoriter=results.begin();

while(iter!=results.end())

{

cout<<*iter++<

}

return0;}

python语言:

在Python中有专门的函数split()对字符串进行分割,实现较为简单myfile=open('test.txt','r')allWords=[]line=myfile.readline()whileline:

list=line.split('')

forwordinlist:

ifword[-1]=='\n':

allWords.append(word[:-1])#去掉行末的'\n'

else:

allWords.append(word)

line=myfile.readline()myfile.close()printallWords

相比较而言,(抛开运行效率不说),开发效率比较好的是Python,然后是c++,(但是一旦c++这些方法提前包装好了,也是很不错的)。

以上内容为大家介绍了文本处理用c还是用python,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

python判断xml是否存在某一节点?

2023-11-12

python中有跳转语句吗?

2023-11-12

Python中字符串如何查找?

2023-11-12

最新文章NEW

怎么查看python变量值

2023-11-12

python的配置文件怎样写?

2023-11-12

如何使用python中range()函数实现逆序遍历?

2023-11-12

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>