本文介绍了标点字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



如何计算键盘提示的文本文件中的标点字符数?

Hi,
how can I count the number of punctuation characters within a text file prompted from the keyboard?

推荐答案



假设您必须搜索!在给定的文件regexpr.pl中,请参考下面的代码


#!/ usr / bin / perl;


open(fp1,& ; regexpr.pl")||死了没有;


我的@ array =< fp1> ;;


关闭(fp1);


my

suppose you have to search ! in the given file regexpr.pl then please refer below code

#!/usr/bin/perl;

open(fp1,"regexpr.pl") || die "no";

my @array=<fp1>;

close(fp1);

my




这篇关于标点字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 18:24