本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
How to change @INC to find Perl modules in non-standard locations
How to change @INC to find Perl modules in non-standard locations
Loading your private Perl module
You have a script and have just started to move some parts of it, out to a new module called My::Mod ...
如何处理错误消息Please install the gcc make perl packages
如何处理这行错误消息?
Please install the gcc make perl packages from your distribution。
执行命令行:yum install gcc perl make
输出:
Loaded plugins: product-id, search-disabled ...
try catch
#! /usr/bin/perl -w
use 5.014;
use Try::Tiny;
#1.检测Try::Tiny是否安装
#perl -e "use Try::Tiny"
#查看 perldoc Try::Tiny 内置模块的帮助文档
#2.使用try catch异常
try {
#2.1 可能会出现异常的代码
...
Perl之Net::APNS实现苹果消息推送
Net::APNS is Apple Push Notification Service. Push message to iPhone and get unavalble-devicetoken.
苹果开发者官网说明:The APNs provider API lets you send remote notification requests to APNs.
Net::AP ...
Perl之Linux::Inotify2
关于 inotify 机制的详细介绍可以参考文章:
inotify -- Linux 2.6 内核中的文件系统变化通知机制
文章写得很详细,而且还给出了c语言实现的例子。
下面我就来说说Perl里面,如何利用Linux::Inotify2 实现任务异步操作的例子。
比如 A进程(线程)将要完成的任务按一定规则 写到inotify监控的目录下,通过inotify机制自动解析并完成任务 ...
老男孩带你了解perl正则表达式中的零宽断言
老男孩IT教育小编为大家整理了perl正则表达式中的零宽断言的方法,希望能帮到大家
1.1前言
本文只介绍perl语言正则表达式的零宽断言功能。零宽断言实质:匹配文本里面的位置。零宽断言叫zero-length assertions,也叫lookaround(这个更容易理解)。包括:lookahead(向前看,零宽度正预测先行断言),lookbehind(向后看,零宽度正回顾后发断言)。从 ...
Perl之Spreadsheet::ParseExcel
转载:http://www.alonely.com.cn/CGI-Perl/20160908/29061.html
use strict;
use Spreadsheet::ParseExcel;
my $parser = Spreadsheet::ParseExcel->new();
my $workbook = $parser->Parse('Book1. ...
【面试题】请对 POSIX 风格和兼容 Perl 风格两种正则表达式的主要函数进行类比说明
POSIXF风格的正则表达式主要函数有
ereg 函数:(正则表达式匹配)
ereg_replace 函数:(正则表达式替换)
Perl风格的正则表达式主要函数有
preg_match 函数:(进行正则表达式匹配)
preg_replace 函数:(执行正则表达式的搜索和替换)
int ereg ...