DEFAULT_SIGNATURE_MYIPAD
2012年5月18日星期五
Re: [PerlChina] Re: perl 如何提取html文件中连续script标签并进行合并?
楼主要的是处理html标签的,不是处理js内容的。楼上各位好像都是在猜测楼主意图
其实楼主只是想处理连续三行相同标签的情况。
我是新手 也期待高手给一个好的解决方法 正则只会简单匹配 这种处理没做过
2012/5/14 Cloud Liu <cloud.liuzj@gmail.com>:
> 是否可以自己写个正则,把JS标签里的东西都合并在一起呢?
>
--
您收到此邮件是因为您订阅了 Google 网上论坛的“PerlChina Mongers 讨论组”论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
Re:[PerlChina] perlchina@googlegroups.com 的摘要 - “1 个主题”有 2 个帖子
>=============================================================================
>今日主题摘要
>=============================================================================
>
>网上论坛: perlchina@googlegroups.com
>网址: http://groups.google.com/group/perlchina/topics
>
> - more than one way in perl [2 条更新]
> http://groups.google.com/group/perlchina/t/492494e7f83142e9
>
>
>=============================================================================
>主题: more than one way in perl
>网址: http://groups.google.com/group/perlchina/t/492494e7f83142e9
>=============================================================================
>
>---------- 第 1 个(共 2 个) ----------
>发件人: Haiyan Lin <linhy0120@gmail.com>
>日期: May 17 05:05PM +0800
>网址: http://groups.google.com/group/perlchina/msg/e3da78387de45080
>
>Hi, perlers,
>
>Supposing I have a hash reference in hand, the effect of the following
>two statements
>
>$hash1_ref = &subroutine1( $hash0_ref, 'parameter1' );
>$hash2_ref = &subroutine1( $hash1_ref, 'parameter2' );
>
>will save elements in $hash0_ref, stafisfying both parameter1 and
>parameter2, into $hash2_ref.
>
>I try to do this by following one statement, but I failed.
>
>$hash_ref2 = &subroutine1( &subroutine1( $hash0_ref, 'parameter1'),
>'paratemter2') ;
>
>any help? THANKS in advance
>
>==================================================
>?????????$hash0_ref?????parameter1 ?parameter2???,???$hash2_ref??
>$hash1_ref = &subroutine1( $hash0_ref, 'parameter1' );
>$hash2_ref = &subroutine1( $hash1_ref, 'parameter2' );
>
>
>????????,???,?????????,??????????????
>
>$hash_ref2 = &subroutine1( &subroutine1( $hash0_ref, 'parameter1'),
>'paratemter2') ;
>
>
>
>
>Haiyan Lin
>
>
>---------- 第 2 个(共 2 个) ----------
>发件人: joe jiang <lamp.purl@gmail.com>
>日期: May 17 07:41PM +0800
>网址: http://groups.google.com/group/perlchina/msg/11865bfc42817023
>
>Think this is related to your logic inside the subroutine1, please check
>why there are many lines of eval and 1>1
>
>
>
>
>
>--
>您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
>要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
>要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
>若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
>
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
2012年5月17日星期四
Re: [PerlChina] more than one way in perl
Hi, perlers,--
Supposing I have a hash reference in hand, the effect of the following two statements
$hash1_ref = &subroutine1( $hash0_ref, 'parameter1' );
$hash2_ref = &subroutine1( $hash1_ref, 'parameter2' );
will save elements in $hash0_ref, stafisfying both parameter1 and parameter2, into $hash2_ref.
I try to do this by following one statement, but I failed.
$hash_ref2 = &subroutine1( &subroutine1( $hash0_ref, 'parameter1'), 'paratemter2') ;
any help? THANKS in advance
==================================================
下面的语句可以得到$hash0_ref中同时满足parameter1 和parameter2的结果,并放到$hash2_ref中。
$hash1_ref = &subroutine1( $hash0_ref, 'parameter1' );
$hash2_ref = &subroutine1( $hash1_ref, 'parameter2' );
现在我换一种写法,理论上,可以得到相同的结果,但报错了。请高高手指导。谢谢
$hash_ref2 = &subroutine1( &subroutine1( $hash0_ref, 'parameter1'), 'paratemter2') ;
Haiyan Lin
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
[PerlChina] more than one way in perl
Supposing I have a hash reference in hand, the effect of the following two statements
$hash1_ref = &subroutine1( $hash0_ref, 'parameter1' );
$hash2_ref = &subroutine1( $hash1_ref, 'parameter2' );
will save elements in $hash0_ref, stafisfying both parameter1 and parameter2, into $hash2_ref.
I try to do this by following one statement, but I failed.
$hash_ref2 = &subroutine1( &subroutine1( $hash0_ref, 'parameter1'), 'paratemter2') ;
any help? THANKS in advance
==================================================
下面的语句可以得到$hash0_ref中同时满足parameter1 和parameter2的结果,并放到$hash2_ref中。
$hash1_ref = &subroutine1( $hash0_ref, 'parameter1' );
$hash2_ref = &subroutine1( $hash1_ref, 'parameter2' );
现在我换一种写法,理论上,可以得到相同的结果,但报错了。请高高手指导。谢谢
$hash_ref2 = &subroutine1( &subroutine1( $hash0_ref, 'parameter1'), 'paratemter2') ;
Haiyan Lin
2012年5月16日星期三
Re: [PerlChina] perlchina@googlegroups.com 的摘要 - “1 个主题”有 2 个帖子
用HTML::TreeBuilder模块,笨重啊
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
2012年5月14日星期一
[PerlChina] Fwd: [Perlweekly] #42 - What is in a name?
From: Gabor Szabo <gabor@szabgab.com>
Date: Mon, May 14, 2012 at 8:43 PM
Subject: [Perlweekly] #42 - What is in a name?
To: perlweekly@perlweekly.com
Issue #42 - May 14, 2012 - What is in a name? You can read the newsletter on the web, if you prefer. Hi, This issue was put together in Kiev, thanks to Yaroslav Korshak (yko), Alexandra Solov'eva (Sasha), Viacheslav Tykhanovskyi (vti) who organized Perl Mova and invited me to participate. Special thanks to yko and Sasha who even let me stay in their apartment. I enjoyed myself very much walking around in Kiev and the conference was also great. On the first day there were several talks in English. The second day I spent in the hallway track. vti has already wrote about it (see below), but I hope we'll see several other reports written about the event. It seems giving names is a central theme of this issue. There are at least 3 items related to the importance and the difficulty of naming things. Lastly, let me point out, that Damian Conway will give a talk in New York, in May 17. See details below. Now to the posts... Announcements Acme::MetaSyntactic is back! YAPC::NA Will Be Televised! WWW::UsePerl::Server Twitter Bootstrap templates for Dancer Applications Articles NYTProf, File IO, and an Optimization Gone Awry On the importance of intuitive names Introduction to Perl one-liners Write the Wrong Code First Simple Attribute-Based Template Exporting A file download CGI script in Perl Web-Multitasking: Whos gonna work for the working man? Discussion Removing Locale::Country::SubCountry from CPAN On CPAN Namespaces: Urban Namespace Planning Don't use Cache::Memcached for UTF8 strings Testing CPAN Testers Summary - April 2012 - Pictures At An Exhibition Code Simulating multiple, lazy attributes Reddit API for Perl Using the VirusTotal API v2.0 Mix Perl and C++/CLI Event reports Perl Mova / YAPC::Russia 2012 is over! Fun Damian Conway in New York on May 17, 2012 Perl 6 Perl 6 and D separated at birth Since the Hackathon... The self promotion section Registration process with Perl Dancer Events I usually list the next 3-4 events here. The list of all the events can be found on on the web site. If your Perl event is not in the list, let me know. Nordic Perl workshop YAPC::NA French Perl workshop Quack And Hack 2012 You joined the Perl Weekly to get weekly e-mails about the Perl programming language and related topics. You can freely redistribute this message if you keep the whole message intact, including the Copyright notice and this text. |
_______________________________________________
Perlweekly mailing list
Perlweekly@perlweekly.com
http://mail.perlweekly.com/mailman/listinfo/perlweekly
Fayland Lam // http://www.fayland.org/
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
Re: [PerlChina] perlchina@googlegroups.com 的摘要 - “1 个主题”有 2 个帖子
用HTML::TreeBuilder模块,笨重啊
--您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
Re: [PerlChina] perlchina@googlegroups.com 的摘要 - “1 个主题”有 2 个帖子
eq 'script' can check if there is 3 scripts together, but it's pretty
tricky too.
Thanks
2012/5/14 Rui Hu <rui0hu@gmail.com>:
> 这个似乎没有达到楼主想要的连续的效果,楼主说是处理连续的三行
> 楼主给的示例中的d.js并没有被合并 你这个代码是不是会合并d.js到上面的三行中?
>
>
> 2012/5/14 陈钢 <missingyousomuch@163.com>:
>> my @js_files = $html =~ /<script>balabala(.*?\.js)<\/script>/gims;
>> my $new_tag = "<script>";
>> foreach (@js_files)
>> {
>> $new_tag.= $_ .",";
>> }
>> $new_tag .= "</script>";
>>
>
> --
> 您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
> 要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
> 要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
> 若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
>
--
Fayland Lam // http://www.fayland.org/
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
Re: [PerlChina] perlchina@googlegroups.com 的摘要 - “1 个主题”有 2 个帖子
楼主给的示例中的d.js并没有被合并 你这个代码是不是会合并d.js到上面的三行中?
2012/5/14 陈钢 <missingyousomuch@163.com>:
> my @js_files = $html =~ /<script>balabala(.*?\.js)<\/script>/gims;
> my $new_tag = "<script>";
> foreach (@js_files)
> {
> $new_tag.= $_ .",";
> }
> $new_tag .= "</script>";
>
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
回复:[PerlChina] perlchina@googlegroups.com 的摘要 - “1 个主题”有 2 个帖子
在 2012-05-14 16:03:39,perlchina@googlegroups.com 写道:
网上论坛: http://groups.google.com/group/perlchina/topics
- perl 如何提取html文件中连续script标签并进行合并? [2 条更新]
Cloud Liu <cloud.liuzj@gmail.com> May 14 11:47AM +0800
是否可以自己写个正则,把JS标签里的东西都合并在一起呢?
在 2012年5月12日 下午10:22,蓝天下云层上 <imx365ster@gmail.com>写道:
Rui Hu <rui0hu@gmail.com> May 14 02:41PM +0800
楼主要的是处理html标签的,不是处理js内容的。楼上各位好像都是在猜测楼主意图
其实楼主只是想处理连续三行相同标签的情况。
我是新手 也期待高手给一个好的解决方法 正则只会简单匹配 这种处理没做过
您收到此邮件是因为您订阅了 Google 网上论坛 perlchina。
--
您可以通过电子邮件发帖。
要取消订阅此网上论坛,请发送一封空邮件。
有关更多选项,请访问此网上论坛。
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
2012年5月13日星期日
Re: [PerlChina] Re: perl 如何提取html文件中连续script标签并进行合并?
其实楼主只是想处理连续三行相同标签的情况。
我是新手 也期待高手给一个好的解决方法 正则只会简单匹配 这种处理没做过
2012/5/14 Cloud Liu <cloud.liuzj@gmail.com>:
> 是否可以自己写个正则,把JS标签里的东西都合并在一起呢?
>
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
Re: [PerlChina] Re: perl 如何提取html文件中连续script标签并进行合并?
不是合并文件,而是处理html代码中连续的标签,提取标签属性进行重组
要在网络上查看此讨论,请访问 https://groups.google.com/d/msg/perlchina/-/KaRjbSJ1NBQJ。
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。