首页 软件开发 代码片段 ( Page 47 )

代码片段 8064

#Perl
perl中的队列

#!/usr/bin/perl use strict; #use warnings; use feature 'say'; my @people = ("Foo", "Bar");…

2015-12-14 1,008

#Perl
分割合并文件

use strict; my $ItemSize = 1024 * 1024 * 100; open(FILEHANDLE, "< a1.mkv"); binmode FIL…

2015-12-14 962

#Perl
perl解析xml

use XML::Simple; my $xmlfile = "result.xml"; my $casesT = XML::Simple->new( ForceArray …

2015-12-14 676

#Perl
perl通过IMAP接收、处理邮件

#!/usr/bin/perl use warnings; use strict; use Mail::IMAPClient; use Term::ReadKey; print "…

2015-12-14 862

#Perl
Perl 列出系统所有的帐号(Windows)

#FILTER_NORMAL_ACCOUNT Lists normal accounts on a system. #FILTER_SERVER_TRUST_ACCOUNT Lis…

2015-12-14 719

#Perl
Perl 使用 fork 的 socket 服务器

#!/usr/bin/perl use warnings; use IO::Socket; my $servsock = IO::Socket::INET->new( Lis…

2015-12-14 735

#Perl
对存储过程表的列及值添加标记,方便修改

#!/usr/bin/perl -w use warnings; if(open LOGO ,"<sql.txt" or die "\ncan't find File: $!…

2015-12-14 585

#Perl
Perl 使用指定的 User-Agent 抓取网页

#!/usr/bin/perl -w use LWP; use strict; my $browser = LWP::UserAgent->new(agent => '…

2015-12-14 288

#CSS
非响应css初始化

@charset "gb2312"; * { margin: 0; padding: 0; outline: none; } a { color:#333; text-decora…

css
2015-12-14 609

#CSS
两列布局,左侧定宽,右侧自适应

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content…

css
2015-12-14 515
1 45 46 47 48 49 672