php 正则匹配第一个php正则

老生常谈php 正则中的i,m,s,x,e分别表示什么
转载 & & 投稿:jingxian
下面小编就为大家带来一篇老生常谈php 正则中的i,m,s,x,e分别表示什么。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
i&&&&&&&& &
如果设定此修正符,模式中的字符将同时匹配大小写字母。
当设定了此修正符,“行起始”和“行结束”除了匹配整个字符串开头和结束外,还分别匹配其中的换行符的之后和之前。
如果设定了此修正符,模式中的圆点元字符(.)匹配所有的字符,包括换行符。没有此设定的话,则不包括换行符。
x&&&&&&& &
如果设定了此修正符,模式中的空白字符除了被转义的或在字符类中的以外完全被忽略,在未转义的字符类之外的 #以及下一个换行符之间的所有字符,包括两头,也都被忽略。
e&&&&&&& &
如果设定了此修正符,preg_replace() 在替换字符串中对逆向引用作正常的替换,
?在 . + 和 * 之后 表示非贪婪匹配: *、+和?限定符都是贪婪的,因为它们会尽可能多的匹配文字,只有在它们的后面加上一个?就可以实现非贪婪或最小匹配。
$string = "上飞机离开我&img border='0' alt='' src='/uploadfile/567.jpg' border='0' /&sdfsdf";
$su = preg_match("/ \&[ ]*img.*src[ ]*\=[ ]*[\"|\'](.+?)[\"|\'] /", $string,$match); // 匹配src=的内容
print_r($match[1]); // 输出 /uploadfile/567.jpg
$su = preg_match("/ \&[ ]*img.*src[ ]*\=[ ]*[\"|\'](.+)[\"|\'] /", $string,$match);
print_r($match[1]); // 输出 /uploadfile/567.jpg' border='
例子:(?i):
(?i)在PHP中的意思是内部修正符,i指不区分大小写
其它的修正符还有x,m,s,U等。和我们使用的模式修正符是一样的。
区别在于它是在模式内部使用的。仅作用于(?i)所在的子模式内
ccc(a(?i))bcd 匹配 cccabcd和cccAbcd
而a(?i)bc则和abc加上\i修正符是一样的因为(?i)作用于整个模式
对一个正则表达式模式或部分模式两边添加圆括号将导致相关匹配存储到一个临时缓冲区中,所捕获的每个子匹配都按照在正则表达式模式中从左至右所遇到的内容存储。存储子匹配的缓冲区编号从 1 开始,连续编号直至最大 99 个子表达式。每个缓冲区都可以使用 '\n' 访问,其中 n 为一个标识特定缓冲区的一位或两位十进制数。
可以使用非捕获元字符 '?:', '?=', or '?!' 来忽略对相关匹配的保存。
以上这篇老生常谈php 正则中的i,m,s,x,e分别表示什么就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
大家感兴趣的内容
12345678910
最近更新的内容
常用在线小工具php中的一个正则匹配问题? - 知乎1被浏览326分享邀请回答1添加评论分享收藏感谢收起写回答10个实用的PHP正则表达式_百度经验
&&&&&&公务办理10个实用的PHP正则表达式
百度经验:jingyan.baidu.com正则表达式是程序开发中一个重要的元素,它提供用来描述或匹配文本的字符串,如特定的字符、词或算式等。但在某些情况下,用正则表达式去验证一个字符串比较复杂和费时。本文为你介绍10种常见的实用PHP正则表达式的写法,希望对你的工作有所帮助。1. 验证E-mail地址这是一个用于验证电子邮件的正则表达式。但它并不是高效、完美的解决方案。在此不推荐使用。& &$email = "test@ansoncheung.tk";if (preg_match('/^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/',$email)) {&&&&echo "Your email is ok.";} else {&&&&echo "Wrong email address format";}& &为了更加有效验证电子邮件地址,推荐使用filer_var。& &if (filter_var('test+email@ansoncheung', FILTER_VALIDATE_EMAIL)) {&&&&echo "Your email is ok.";} else {&&&&echo "Wrong email address format.";}& &2. 验证用户名这是一个用于验证用户名的实例,其中包括字母、数字(A-Z,a-z,0-9)、下划线以及最低5个字符,最大20个字符。同时,也可以根据需要,对最小值和最大值做合理的修改。$username = "user_name12";if (preg_match('/^[a-z\d_]{5,20}$/i', $username)) {&&&&echo "Your username is ok.";} else {&&&&echo "Wrong username format.";}& &3. 验证电话号码这是一个验证美国电话号码的实例。&$phone = "(021)423-2323";if (preg_match('/\(?\d{3}\)?[-\s.]?\d{3}[-\s.]\d{4}/x', $phone)) {&&&&echo "Your phone number is ok.";} else {&&&&echo "Wrong phone number.";}& &4. 验证IP地址这是一个用来验证IPv4地址的实例。&$IP = "198.168.1.78";if (preg_match('/^(([1-9]?[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([1-9]?[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/',$IP)) {&&&&echo "Your IP address is ok.";} else {&&&&echo "Wrong IP address.";}& &5. 验证邮政编码这是一个用来验证邮政编码的实例。$zipcode = "";&if (preg_match("/^([0-9]{5})(-[0-9]{4})?$/i",$zipcode)) {&echo "Your Zip code is ok.";&} else {&echo "Wrong Zip code.";&}& &6. 验证SSN(社会保险号)这是一个验证美国SSN的实例。$ssn = "333-23-2329";if (preg_match('/^[\d]{3}-[\d]{2}-[\d]{4}$/',$ssn)) {&&&&echo "Your SSN is ok.";} else {&&&&echo "Wrong SSN.";}& &7. 验证信用卡号$cc = "005";if (preg_match('/^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|]{12}|3(?:0[0-5]|[68][0-9])[0-9]{11}|3[47][0-9]{13})$/', $cc)) {&&&&echo "Your credit card number is ok.";} else {&&&&echo "Wrong credit card number.";}& &8. 验证域名 &$url = "http://ansoncheung.tk/";&if (preg_match('/^(http|https|ftp):\/\/([A-Z0-9][A-Z0-9_-]*(?:\.[A-Z0-9][A-Z0-9_-]*)+):?(\d+)?\/?/i', $url)) {&echo "Your url is ok.";&} else {&echo "Wrong url.";&}& &9. 从特定URL中提取域名&$url = "http://ansoncheung.tk/articles";&preg_match('@^(?:http://)?([^/]+)@i', $url, $matches);&$host = $matches[1];echo $& &10. 将文中关键词高亮显示$text = "Sample sentence from AnsonCheung.tk, regular expression has become popular in web programming. Now we learn regex. According to wikipedia, Regular expressions (abbreviated as regex or regexp, with plural forms regexes, regexps, or regexen) are written in a formal language that can be interpreted by a regular expression processor";$text = preg_replace("/\b(regex)\b/i", '&span style="background:#5fc9f6"&\1&/span&', $text);echo $& &原作者:杨雨经验内容仅供参考,如果您需解决具体问题(尤其法律、医学等领域),建议您详细咨询相关领域专业人士。作者声明:本篇经验系本人依照真实经历原创,未经许可,谢绝转载。投票(0)已投票(0)有得(0)我有疑问(0)◆◆说说为什么给这篇经验投票吧!我为什么投票...你还可以输入500字◆◆只有签约作者及以上等级才可发有得&你还可以输入1000字◆◆如对这篇经验有疑问,可反馈给作者,经验作者会尽力为您解决!你还可以输入500字相关经验00000热门杂志第3期人生知识达人职场秘诀1022次分享第1期实现创业梦想1502次分享第1期轻松理财手册683次分享第2期晋升攻坚战448次分享第1期如何用互联网理财524次分享◆请扫描分享到朋友圈21:08 提问
求助一个php正则表达式的问题
有一个形式类似下面的字符串
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&2%2C2%2C"&微信公众号营销一本通&/a&&/span&
我想在php环境中用正则表达式匹配出其中书名(微信公众号营销一本通)部分,请问应该怎么写这个正则表达式
更新,整个html文件源代码:
dir="LTR"&
&title&Jinan University Library
/All Locations&/title&
&base target="_self"/&
&link rel="stylesheet" type="text/css" href="/scripts/ProStyles.css" /&
&link rel="stylesheet" type="text/css" href="/screens/styles.css" /&
&link rel="shortcut icon" type="ximage/icon" href="/screens/favicon.ico" /&
&script type="text/javascript" src="/scripts/common.js"&&/script&
&script type="text/javascript" src="/scripts/features.js"&&/script&
&script type="text/javascript" src="/scripts/elcontent.js"&&/script&
&script type="text/JavaScript"&
&!-- Hide the JS
startTimeout(6000000, "/");
&noscript&
&meta http-equiv="Refresh" content="6000;URL=/" /&
&/noscript&
&script type="text/javascript" src="/screens/bibdisplay.js"&&/script&&meta name="renderer" content="webkit|ie-comp|ie-stand"&
&body bgcolor="#FFFFFF" &
&!-- begin toplogo_chx.html file --&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 19 August 2008 --&
&script language="JavaScript" type="text/javascript" src="/screens/jquery-1.10.1.min.js"&&/script&
&script language="JavaScript" type="text/javascript" src="/screens/related.js"&&/script&
&script language="JavaScript" type="text/javascript" src="/screens/libinfo.js"&&/script&
&script language="JavaScript" type="text/javascript" src="/screens/searcharg.js"&&/script&
&div class="topLogoDiv"&
&div id="skipNav"&&a href="#content"&跳至內容&/a&&/div&
&div class="floatRight"&
&ul id="headerNav"&
&li class="headerNavFirst"&&a href="/*chx"&馆藏检索主页&/a&&/li&
&li&&a href="/screens*chx/help_index_chx.html"&帮助&/a&&/li&
&li&&a href="/patroninfo*chx"&登录&/a&&/li&
&li&&a href="http://opac.jnu.edu.cn/*eng"&&font color="#990000"&&strong&English&/strong&&/font&&/a&&/li&
&a href="/*chx"&&img src="/screens/logo.gif"
alt="2007 WebPAC PRO"/&&/a&
&div class="clear"& &!-- content div --&
&div class="pageNavColumn"&&!-- nav menu column--&
&span id="limit"&&/span&
&div id='limit' class="navHeader" style='width:100%;background-color:#D2E0E7; border:1px
text-align:'&&font size="4"&&strong&精确查询,依照:&/strong&&/font&&/div&
&h1 class="navHeader"&&font size="3"&从哪里查找&/font&&/h1&
&ul class="leftCol"&
&li&&span id="keyword" &&/span&&/li&
&li&&span id="title" &&/span&&/li&
&li&&span id="subject"&&/span&&/li&
&li&&span id="author"&&/span&&/li&
&li&&span id="isbnsea"&&/span&&/li&
&li&&span id="callno"&&/span&&/li&
&li&&a href="/search*chx/g"&政府文件&/a&&/li&
&div id="JNU_QRCode"
style="display:none"&
&div id="libinfo"&&/div&
&div id="relate"&&/div&
&h1 class="navHeader"&&font size="3"&出版年份&/font&&/h1&
&ul class="leftCol"&
&li style="list-style: padding:2 color:#000"&&span id="2009" &&/span&&/li&
&li&&span id="2008"&&/span&&/li&
&li&&span id="2007"&&/span&&/li&
&li&&span id="2006"&&/span&&/li&
&li&&span id="course"&&/span&&/li&
&li&&a href="/suggest*chx"&评论&/a&&/li&
&div class="navHeader" style='width:100%;background-color:#D2E0E7; border:1px
text-align:'&&font size="4"&&strong&个性化服务&/strong&&/font&&/div&
&!--&h1 class="navHeader"&&font size="3"&你的图书馆&/h1&--&
&ul class="leftCol"&
&li&&a href="/patroninfo*chx"&我的帐户&/a&&/li&
&li&&a href="/acquire*chx"&好书荐购&/a&&/li&
&li&&a href="/search*chx/X"&高级检索&/a&&/li&
&li&&a href="http://202.116.13.252/newbook/newbook"&新书通报&/a&&/li&
&li&&a href="http://202.116.13.252/reading/" target="_blank"&&font color="#990000"&&strong&外借排行榜&/strong&&/font&&/a&&/li&
&li&&a href="http://lib.jnu.edu.cn"&图书馆主页&/a&&/li&
&li&&a href="http://toolbar.google.com/buttons/add?url=http://opac.jnu.edu.cn/screens/JNULOPAC.xml"&添加OPAC检索按钮到Google工具栏&/a&&/li&
&li&&a href="http://mycroft.mozdev.org/search-engines.html?name=%E6%9A%A8%E5%8D%97%E5%A4%A7%E5%AD%A6%E5%9B%BE%E4%B9%A6%E9%A6%86" target="_blank" title="点击暨南大学图书馆链接安装插件"&OPAC的Firefox搜索引擎插件&/a&&/li&
&li&&a href="http://202.116.13.41/libStu/video.jsp" target="_blank" title="新生入馆视频指南"&新生入馆视频指南&/a&&/li&
&li&&a href="http://lib.jnu.edu.cn/help/HelpInfo.action?id=34" target="_blank" title="随书光盘系统使用帮助"&随书光盘系统使用帮助&/a&&/li&
&li&&a href="http://202.116.13.4/show.jsp?ID=1339" target="_blank" title="暨南大学图书馆无线网络使用帮助"&暨南大学图书馆无线网络使用帮助&/a&&/li&
&li&&a href="http://lib.jnu.edu.cn/feedback/feedbackList.action?sysid=42&itemid=0" target="_blank"&&img src="/screens/aa.gif" /&&/a&&/li&
&li&&a href="/illb*chx"&馆际互借&/a&&/li&
&li&&a href="/suggest*chx"&评论&/a&&/li&
&li&&a href="/selfreg*chx"&开一个帐户&/a&&/li&
&h1 class="navHeader"&图书馆链接&/h1&
&ul class="leftCol"&
&!--&li&&a href="http://toolbar.google.com/buttons/add?url=http://opac.jnu.edu.cn/screens/JNULOPAC.xml" onMouseOver="AdLayer.style.display='inline'"
onmouseout="AdLayer.style.display='none'"&&font color="#990000"&&strong&添加OPAC检索按钮到Google工具栏&/strong&&/font&&/a&&/li&
&li&&a href="/feeds*chx"&Feeds&/a&&/li&
&li&&a href="/screens*chx/rpro_chx.html"&Research Pro&/a&&/li&
&li&&a href="/iii/calendar"&活动日程&/a&&/li&
&li&&a href="/*chx"&KidsOnline&/a&&/li&
&li&&a href="/ftlist*chx"&专题馆藏/新书通告&/a&&/li&
&li&&a href="/screens*chx/resources_index_chx.html"&其他资源&/a&&/li&
&h1 class="navHeader"&指定参考书&/h1&
&ul class="leftCol"&
&li&&a href="/search*chx/r"&课程搜索&/a&&/li&
&li&&a href="/search*chx/p"&教师搜索&/a&&/li&
&/div&&!--Styling div--&
当时用于显示google按钮的 鼠标动作
style='position: width:250 height:143 z-index:20; left: 987 top: 448'&
&table id="AdLayer" name="AdLayer" border="0" style="display:none"&
&td &&font size="2"&
**点击JNUOPAC按钮,直接打开暨南大学图书馆书目检索页面&/br&&/br&
**如在google检索框输入检索内容,点击JNUOPAC按钮,将会返回暨南大学图书馆书目的检索内容。&/font&&/td&
&div class="pageContentColumn"&&!-- content container --&
&a name="content"&&/a&
&!--end toplogo_chx.html--&
&div align="center" class="navigationRow"&
&a href="/search~S1*chx"&&img src="/screens/startover_chx.gif" alt="重新检索" border="0" /&&/a&
&a href="/search~S1*chx/X?NOSRCH={u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1"&&img src="/screens/modify_chx.gif" alt="修改检索" border="0" /&&/a&
&a href="/search~S1*chx/X"&&img src="/screens/another_chx.gif" alt="再次检索" border="0" /&&/a&
&select name=HISTORY onChange="onSelectChange(this, '~S1*chx')"&&option value=""&(检索历史)&/option&
&OPTION VALUE="X{u5FAE}{u4FE1}&searchscope=1&SORT=D"&关键字: 微信 在 全部馆藏
&option value="+/search~S1*chx/X?{u5FAE}{u4FE1}&searchscope=1&SORT=D&clear_history"&(清除检索历史)&/option&
&option value="+/*chx"&(结束检索进程)&/option&
&noscript&
&h2&搜索历史功能需要JavaScript。&/h2&
&/noscript&
&!-- BEGIN BROWSE SCREEN TABLE --&
&table width="100%" cellpadding="2" cellspacing="0" border="0" class="browseScreen"&
&!-- BEGIN SEARCH WIDGET --&
&div align="center"&
&tr align="center" valign="middle"&
&td valign="middle" colspan="2"&
class="browseSearchtool"&
&script type="text/JavaScript"&
&!-- Hide the JS
var savedS
var savedT
var savedS
var sortButtonText =
var savedExactSearch =
var sortButtonEvent =
var sortExactBrowseURL =
var sortTypes = new Array();
var sortLabels = new Array();
sortTypes[0] = "t";
sortLabels[0] = "题名";
sortTypes[1] = "a";
sortLabels[1] = "作者";
sortTypes[2] = "c";
sortLabels[2] = "出版年升序";
sortTypes[3] = "r";
sortLabels[3] = "出版年降序";
sortTypes[4] = "n";
sortLabels[4] = "索书号";
sortTypes[5] = "m";
sortLabels[5] = "载体类型";
sortLabels[6] = "系统排序";
sortTypes[6] = "-";
var sortSelectedValue = "6";
var nonSortTags = "XYZprWw"
// Unhide the JS --&
&form name="searchtool" target="_self" action="/search~S1*chx/" method='GET'&
&label for="searchtype" style="display:"&SearchType&/label& &select name="searchtype" id="searchtype" onChange="initSort()"&
&option value="a"& 著者&/option&
&option value="t"& 题名&/option&
&option value="d"& 主题&/option&
&option value="c"& 索书号&/option&
&option value="i"& 标准号&/option&
&option value="X" selected="selected"& 关键字&/option&
&label for="searcharg" style="display:"&Search&/label&&input type="text" name="searcharg" id="searcharg" size="30" onchange='return searchtoolSubmitAction()'maxlength="75" value="微信" /&
&label for="searchscope" style="display:"&Search Scope&/label&&select name="searchscope" id="searchscope"&
&option value="1" selected="selected"& 全部馆藏&/option&
&option value="4"& 本部主要书籍&/option&
&option value="3"& 本部期刊和报纸&/option&
&option value="2"& 本部电子资源&/option&
&option value="7"& 深圳旅游学院&/option&
&option value="6"& 华文学院图书馆&/option&
&option value="5"& 暨南文库&/option&
&option value="8"& 大学城校区&/option&
&span id="sort_cell"&
&script type="text/JavaScript"&
&!-- Hide the JS
initSort();
// Unhide the JS --&
&input type="hidden" name="SORT" value="DZ" /&&input type="hidden" name="extended" value="0" /&
&input type="submit" name="SUBMIT" value="检索" onclick='return searchtoolSubmitAction();' /&
&input type="checkbox" name="availlim" value="1"
/& &span class="availLimMessage"&只检索可借图书&/span&&br/&
&input type="hidden" name="searchlimits" value="" /&
&input type="hidden" name="searchorigarg" value="X{u5FAE}{u4FE1}" /&
class="browseSearchtoolMessage"&
&i&找到 2609 条记录 &/i&排序依据
&strong&相关度&/strong&
| &a href="/search~S1*chx/X?{u5FAE}{u4FE1}&searchscope=1&SORT=DX"&日期&/a&
| &a href="/search~S1*chx/X?{u5FAE}{u4FE1}&searchscope=1&SORT=AX"&题名&/a& .
&div&&/div&&/div&
&!-- END SEARCH WIDGET --&
&!-- BEGIN BROWSE PAGER --&
&!-- begin page widgit --&
class="browsePager"&&td align="center"
class="browsePager" colspan="5"&
结果页面&&&&strong&1&/strong&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/13%2C9%2CB/browse"&2&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/25%2C9%2CB/browse"&3&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/37%2C9%2CB/browse"&4&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/49%2C9%2CB/browse"&5&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/61%2C9%2CB/browse"&6&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/73%2C9%2CB/browse"&7&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/85%2C9%2CB/browse"&8&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/97%2C9%2CB/browse"&9&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/109%2C9%2CB/browse"&10&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/121%2C9%2CB/browse"&11&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/9%2C2609%2CB/browse"&218&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/13%2C9%2CB/browse"&下一页&/a&
&!-- end page widgit --&
&!-- END BROWSE PAGER --&
&style type="text/css"&
#rategroup1 { display: inline }
#rateneed1
{ display: none }
#rategroupMy1 { display: none }
{ display: inline }
#rategroup2 { display: inline }
#rateneed2
{ display: none }
#rategroupMy2 { display: none }
{ display: inline }
#rategroup3 { display: inline }
#rateneed3
{ display: none }
#rategroupMy3 { display: none }
{ display: inline }
#rategroup4 { display: inline }
#rateneed4
{ display: none }
#rategroupMy4 { display: none }
{ display: inline }
#rategroup5 { display: inline }
#rateneed5
{ display: none }
#rategroupMy5 { display: none }
{ display: inline }
#rategroup6 { display: inline }
#rateneed6
{ display: none }
#rategroupMy6 { display: none }
{ display: inline }
#rategroup7 { display: inline }
#rateneed7
{ display: none }
#rategroupMy7 { display: none }
{ display: inline }
#rategroup8 { display: inline }
#rateneed8
{ display: none }
#rategroupMy8 { display: none }
{ display: inline }
#rategroup9 { display: inline }
#rateneed9
{ display: none }
#rategroupMy9 { display: none }
{ display: inline }
#rategroup10 { display: inline }
#rateneed10
{ display: none }
#rategroupMy10 { display: none }
{ display: inline }
#rategroup11 { display: inline }
#rateneed11
{ display: none }
#rategroupMy11 { display: none }
{ display: inline }
#rategroup12 { display: inline }
#rateneed12
{ display: none }
#rategroupMy12 { display: none }
{ display: inline }
&!-- BEGIN BROWSE SCREEN LEFT CELL: BROWSELIST/BRIEFCIT AREA --&
&table border="2" cellpadding="3" width="100%"&
&tr align="CENTER" valign="MIDDLE"&
&td colspan="5" class="browseSaveJump"&
&form method="POST" action="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse" name="export_form" id="export_form" &
&input type="hidden" name="jumpref" value="X{u5FAE}{u4FE1}"&
&input type="hidden" id="save_func" name="save_func" value=""/&
&a href="#" onclick="process_save(0);" style="text-decoration:none"&
&img src="/screens/savemarked_chx.gif" alt="保存选择" class="button" width="120" height="20" border="0" /&&/a&
&span name='save_page_btn1' id='save_page_btn1' style='visibility: visible' &&a href="#" onclick="process_save(1);" style="text-decoration:none"&
&img src="/screens/saveallpage_chx.gif" alt="全部保存" class="button" width="120" height="20" border="0" /&&/a&
&span name='mylist_btn1' id='mylist_btn1' style='visibility: visible' &&a href="#" onclick="save_to_mylist();"&
&img src="/screens/save_to_my_lists_chx.gif" alt="保存到我的检索列表" border="0"/&&/a&
&/td&&/tr&
class="browseHeader"&
&td align="center" class="browseHeaderData"&
关键词 (1-12 共 2609)
&!-- Right Result rank 1 --&
class="browseSuperEntry browseEntryRelGroup1"&&td colspan="1"&&img src="/screens/relevance5.gif" alt="最相关"&&最相关题名&1-85 条记录&/td&&/tr&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_1'&&/a& 1&/div&
&div class="briefcitMedia"&
&img src="/screens/media_book.gif" alt="普通图书"&&/div&
&input type="checkbox"
name="save" value="b3418326" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&1%2C1%2C"&微信品牌营销&/a&&/span&
北京 : 机械工业出版社, 2016.01& &
10,188页 ; 25cm&!--
2016&/div&
&span&评级:&/span&
&span id="rategroup1"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_1"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&div class="briefcitItems"&
&div class="briefcitItems"&
&td align="center" width="5%"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CC/bibimage&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&1%2C1%2C" target="_parent"&&img src="http://book.bookday.cn/book/cover?isbn=4&w=67&h=97 " border="0" alt="书封"&&/a&&/td&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_2'&&/a& 2&/div&
&div class="briefcitMedia"&
&img src="/screens/media_book.gif" alt="普通图书"&&/div&
&input type="checkbox"
name="save" value="b3422848" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&2%2C2%2C"&微信公众号营销一本通&/a&&/span&
/ 魏艳,朱虹主编& &
: 化学工业出版社, 2016.01& &
181页 ; 24cm : 图&!--
2016&/div&
&span&评级:&/span&
&span id="rategroup2"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_2"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&div class="briefcitItems"&
&div class="briefcitItems"&
本书详细介绍了微信公众号营销的各种理念和技巧,以微信公众号为切入点,精选多个微信公众号营销的成功实例构建全文。全书分为基础篇、运用篇和实践篇三篇,全面解析微信公众号的基础知识、运营思路、营销战术,以及推广方法和步骤。&/div&
&td align="center" width="5%"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CC/bibimage&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&2%2C2%2C" target="_parent"&&img src="http://book.bookday.cn/book/cover?isbn=0&w=67&h=97 " border="0" alt="书封"&&/a&&/td&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_3'&&/a& 3&/div&
&div class="briefcitMedia"&
&img src="/screens/media_book.gif" alt="普通图书"&&/div&
&input type="checkbox"
name="save" value="b3335811" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&3%2C3%2C"&深度微信&/a&&/span&
/ 韩曰田著& &
北京 : 机械工业出版社, 2015& &
XI, 282页 : 图 ; 25cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup3"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_3"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CC/requestbrowse~b3335811&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&3%2C3%2C"&&img src="/screens/bullet.gif" alt="" border="0" style="margin-right:5px"/&预约&/a&&/div&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/fivefloor.html"&本部五楼社科阅览区&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cF713.36%2F201520/cf713+36+,-1,,E/browse"&F713.36/201520&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/fourfloor.html"&本部四楼中文图书外借区&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cF713.36%2F201520/cf713+36+,-1,,E/browse"&F713.36/201520&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&到期 16-03-18 &/td&&/tr&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&南校区三楼社科图书借阅区
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cF713.36%2F201520/cf713+36+,-1,,E/browse"&F713.36/201520&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&到期 16-04-13 &/td&&/tr&
&div class="briefcitItems"&
本书包括微信营销、运营、创业和微信电商4大主题,涵盖公众号和朋友圈两大领域。营销视角,公众号内容推广的5个技巧;公众号增粉的15种方法,粉丝维护的5个技巧,获取粉丝的8个“后悔”;朋友圈分享的9个技巧,朋友圈营销的6大策略;微信营销的6大禁忌。运营视角,企业社交媒体矩阵构建;公众号2大定位方法、6大定位方向、11条取名技巧或学问;公众号内容组织、编辑、推送策略与技巧;朋友圈定位的2大策略和营销的6个技巧;运营团队的人才策略和团队管理;运营数据的分析方法。创业角度,自媒体、自组织、第三方开发、微信营销、旅游、本地服务、移动电商等7大领域的创业思路、方法和案例;订阅号创业的4大风险。电商角度,订阅号的电商策略和价值、微信小店的布局和全流程操作、微信电商引流的8个妙招、朋友圈的销售属性和卖货策略。&/div&
&td align="center" width="5%"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CC/bibimage&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&3%2C3%2C" target="_parent"&&img src="http://book.bookday.cn/book/cover?isbn=6&w=67&h=97 " border="0" alt="书封"&&/a&&/td&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_4'&&/a& 4&/div&
&div class="briefcitMedia"&
&img src="/screens/media_book.gif" alt="普通图书"&&/div&
&input type="checkbox"
name="save" value="b3356842" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&4%2C4%2C"&微信蓝皮书&/a&&/span&
/ 主编方兴东& &
北京 : 电子工业出版社, 2015-& &
册 : 图 ; 24cm&!--
2015-&/div&
&span&评级:&/span&
&span id="rategroup4"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_4"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/sixfloor.html"&本部六楼自科阅览区&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cTP393.409%2F20153/ctp393+409+2,,E/browse"&TP393.409/20153&/a& &!-- field v --&&2014 &!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
&div class="briefcitItems"&
本书全面介绍了微信的发展现状, 深度剖析了微信在互联网金融、移动电子商务、电子政务、自媒体和新媒体营销等领域的实践应用与变革创新, 预测并展望了微信在未来的发展趋势与变革热点, 客观评价了微信作为社交全球化平台中的中国力量代表所蕴藏的战略价值、经济价值和社会价值。本书是国内第一本聚焦微信的精品研究图书, 中国最早的互联网智库--互联网实验室、全球领先的移动互联网研究机构--艾媒咨询强强联合, 国内知名的微信与移动互联网研究者、观察者、实践者鼎力参与。本书研究深入、内容全面、分析独到、可读性强, 极具前瞻性和参考性。&/div&
&td align="center" width="5%"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CC/bibimage&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&4%2C4%2C" target="_parent"&&img src="http://book.bookday.cn/book/cover?isbn=7&w=67&h=97 " border="0" alt="书封"&&/a&&/td&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_5'&&/a& 5&/div&
&div class="briefcitMedia"&
&img src="/screens/media_book.gif" alt="普通图书"&&/div&
&input type="checkbox"
name="save" value="b3342924" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&5%2C5%2C"&微信营销2.0&/a&&/span&
/ 何思南著& &
北京 : 机械工业出版社, 2015& &
X, 170页 : 图 ; 22cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup5"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_5"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CC/requestbrowse~b3342924&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&5%2C5%2C"&&img src="/screens/bullet.gif" alt="" border="0" style="margin-right:5px"/&预约&/a&&/div&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/fivefloor.html"&本部五楼社科阅览区&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cF713.36%2F201539/cf713+36+,-1,,E/browse"&F713.36/201539&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/fourfloor.html"&本部四楼中文图书外借区&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cF713.36%2F201539/cf713+36+,-1,,E/browse"&F713.36/201539&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&到期 16-03-18 &/td&&/tr&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&南校区三楼社科图书借阅区
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cF713.36%2F201539/cf713+36+,-1,,E/browse"&F713.36/201539&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&传递中 &/td&&/tr&
&div class="briefcitItems"&
本书内容包括:微信营销进入2.0时代;微信公众平台的创建、运营与营销;微信营销三大步骤;微信营销九大实战技巧;微信营销五大常见错误;微信营销的效果评估;微信营销三大典型案例。&/div&
&td align="center" width="5%"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CC/bibimage&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&5%2C5%2C" target="_parent"&&img src="http://book.bookday.cn/book/cover?isbn=2&w=67&h=97 " border="0" alt="书封"&&/a&&/td&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_6'&&/a& 6&/div&
&div class="briefcitMedia"&
硕士学位论文&/div&
&input type="checkbox"
name="save" value="b3391400" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&6%2C6%2C"&基于微信的企业营销模式创新研究&/a&&/span&
/ 侯兴云著& &
广州 : 暨南大学, 2015& &
38页 : 图 ; 29cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup6"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_6"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&a href="http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=F/M" onclick="window.open('http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=F/M');"&&img src="/screens/bullet_chx.gif" alt="" border="0" style="margin-right:5px"/&电子资源&/a&&br /&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/sixfloor.html"&本部六楼本校博硕学位论文&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cF%2FM/cf+m,-1,,E/browse"&F/M&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
&div class="briefcitItems"&
&td align="center" width="5%"&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_7'&&/a& 7&/div&
&div class="briefcitMedia"&
硕士学位论文&/div&
&input type="checkbox"
name="save" value="b3392774" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&7%2C7%2C"&“罗辑思维”微信公众号运营策略及其效果研究&/a&&/span&
/ 黄晓丹著& &
广州 : 暨南大学, 2015& &
53页 : 图 ; 29cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup7"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_7"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&a href="http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=G/M2015/57" onclick="window.open('http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=G/M2015/57');"&&img src="/screens/bullet_chx.gif" alt="" border="0" style="margin-right:5px"/&电子资源&/a&&br /&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/sixfloor.html"&本部六楼本校博硕学位论文&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cG%2FM/cg+m,-1,,E/browse"&G/M2015/57&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
&div class="briefcitItems"&
&td align="center" width="5%"&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_8'&&/a& 8&/div&
&div class="briefcitMedia"&
硕士学位论文&/div&
&input type="checkbox"
name="save" value="b3393110" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&8%2C8%2C"&基于微信熟人关系圈的自我呈现探析&/a&&/span&
/ 张珍珠著& &
广州 : 暨南大学, 2015& &
47页 : 图 ; 29cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup8"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_8"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&a href="http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=G/M2015/86" onclick="window.open('http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=G/M2015/86');"&&img src="/screens/bullet_chx.gif" alt="" border="0" style="margin-right:5px"/&电子资源&/a&&br /&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/sixfloor.html"&本部六楼本校博硕学位论文&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cG%2FM/cg+m,-1,,E/browse"&G/M2015/86&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
&div class="briefcitItems"&
&td align="center" width="5%"&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_9'&&/a& 9&/div&
&div class="briefcitMedia"&
硕士学位论文&/div&
&input type="checkbox"
name="save" value="b3391591" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&9%2C9%2C"&微信公众平台用户参与、用户价值与用户忠诚度的关系研究&/a&&/span&
/ 杨永丽著& &
广州 : 暨南大学, 2015& &
57页 : 图 ; 29cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup9"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_9"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&a href="http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=F/M" onclick="window.open('http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=F/M');"&&img src="/screens/bullet_chx.gif" alt="" border="0" style="margin-right:5px"/&电子资源&/a&&br /&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/sixfloor.html"&本部六楼本校博硕学位论文&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cF%2FM/cf+m,-1,,E/browse"&F/M&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
&div class="briefcitItems"&
&td align="center" width="5%"&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_10'&&/a& 10&/div&
&div class="briefcitMedia"&
硕士学位论文&/div&
&input type="checkbox"
name="save" value="b3392748" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&10%2C10%2C"&媒介生态学视角下柬泰华文报刊微信发展研究&/a&&/span&
/ 黄慧玲著& &
广州 : 暨南大学, 2015& &
76页 : 图 ; 29cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup10"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_10"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&a href="http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=G/M" onclick="window.open('http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=G/M');"&&img src="/screens/bullet_chx.gif" alt="" border="0" style="margin-right:5px"/&电子资源&/a&&br /&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/sixfloor.html"&本部六楼本校博硕学位论文&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cG%2FM/cg+m,-1,,E/browse"&G/M&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
&div class="briefcitItems"&
&td align="center" width="5%"&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_11'&&/a& 11&/div&
&div class="briefcitMedia"&
硕士学位论文&/div&
&input type="checkbox"
name="save" value="b3391625" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&11%2C11%2C"&柬埔寨《华商日报》微信运营策略研究&/a&&/span&
/ 陈毅著& &
广州 : 暨南大学, 2015& &
50页 : 图 ; 29cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup11"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_11"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&a href="http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=G/M" onclick="window.open('http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=G/M');"&&img src="/screens/bullet_chx.gif" alt="" border="0" style="margin-right:5px"/&电子资源&/a&&br /&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/sixfloor.html"&本部六楼本校博硕学位论文&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cG%2FM/cg+m,-1,,E/browse"&G/M&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
&div class="briefcitItems"&
&td align="center" width="5%"&
&!--this is customized &screens/briefcit_chx.html&--&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 01 July 2008 --&
&td class="briefCitRow"&
&table width="100%" border="0" cellspacing="0" cellpadding="0"&
&tr valign="top"&
&td width="5%" align="center" class="briefcitEntry" &
&div class="briefcitEntryNum"&
&a name='anchor_12'&&/a& 12&/div&
&div class="briefcitMedia"&
硕士学位论文&/div&
&input type="checkbox"
name="save" value="b3392933" &
&td align="left" class="briefcitDetail"&
&!--{nohitmsg}--&
&span class="briefcitTitle"&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/frameset&FF=X{u5FAE}{u4FE1}&searchscope=1&SORT=D&12%2C12%2C"&基于使用与满足理论的政务微信运营效果评价研究&/a&&/span&
/ 吴翀著& &
广州 : 暨南大学, 2015& &
75页 : 图 ; 29cm&!--
2015&/div&
&span&评级:&/span&
&span id="rategroup12"&&a href="/patroninfo~S1*chx/0/redirect=/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse#anchor_12"&&img src="/screens/rate_no.gif" border="0" width="75" height="14" alt="No one has rated this material" title="No one has rated this material" /&&/a&
&/span&&div class="briefcitRequest"&
&span class="briefcitStatus"&
&div class="briefcitActions"&
&a href="http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=D/M" onclick="window.open('http://lib.jnu.edu.cn/webservice/TPIAction.action?callno=D/M');"&&img src="/screens/bullet_chx.gif" alt="" border="0" style="margin-right:5px"/&电子资源&/a&&br /&
&div class="briefcitItems"&
&table width="100%" border="0" cellspacing="1" cellpadding="2" class="bibItems"&
class="bibItemsHeader"&
&th width="33%"
class="bibItemsHeader"&
&th width="43%"
class="bibItemsHeader"&
&th width="24%"
class="bibItemsHeader"&
class="bibItemsEntry"&
&td width="33%" &&!-- field 1 --&&&a href="http://202.116.13.43/douban/floor/sixfloor.html"&本部六楼本校博硕学位论文&/a&
&td width="43%" &&!-- field C --&&&a href="/search~S1*chx?/cD%2FM/cd+m,-1,,E/browse"&D/M&/a& &!-- field v --&&!-- field # --&&&/td&
&td width="24%" &&!-- field % --&&馆内阅览 &/td&&/tr&
&div class="briefcitItems"&
&td align="center" width="5%"&
&!--this is customized &screens/briefcit_chx.html&--&
&tr align="CENTER" valign="MIDDLE"&
&td colspan="5" class="browseSaveJump"&
&a href="#" onclick="process_save(0);" style="text-decoration:none"&
&img src="/screens/savemarked_chx.gif" alt="保存选择" class="button" width="120" height="20" border="0" /&&/a&
&span name='save_page_btn2' id='save_page_btn2' style='visibility: visible' &&a href="#" onclick="process_save(1);" style="text-decoration:none"&
&img src="/screens/saveallpage_chx.gif" alt="全部保存" class="button" width="120" height="20" border="0" /&&/a&
&form action="/search~S1*chx/X?{u5FAE}{u4FE1}&searchscope=1&SORT=D" method="POST"&
&input type="HIDDEN" name="jumpref" value="X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/1%2C9%2CB/browse"&
&script type="text/JavaScript"&
function iiiDoSubmit_1()
//getFormHandleForm() is in common.js
var obj = getFormHandleForm(1);
obj.submit();
&input type="hidden" id="iiiFormHandle_1"/&
&a href="#" onclick="iiiDoSubmit_1();"&&img src="/screens/locateinresults_chx.gif" alt="Locate in results" class="button" width="120" height="20" border="0" /&&/a&
&script type="text/JavaScript"&
//getFormHandleForm() is in common.js
var evtobj = getFormHandleForm(1);
if (document.layers)
document.captureEvents(Event.KEYUP);
document.onkeyup = function(evt)
if (!evt) evt = window.
if (evt.which) keyCode = evt.
else if (evt.keyCode) keyCode = evt.keyC
if (evt.target) targ = evt.
else if (evt.srcElement) targ = evt.srcE
if (targ.nodeType == 3) //for Safari bug
targ = targ.parentN
if (targ.form)
targ = targ.
//alert('targ='+targ+'
evtobj='+evtobj);
if (keyCode == 13 && targ == evtobj)
iiiDoSubmit_1();
&input type="TEXT" name="jumpto" value="2609" size="4" maxlength="4"&
&/td&&/tr&
&!-- END BROWSELIST/BRIEFCIT AREA --&
&!-- END BROWSE SCREEN LEFT CELL --&
&!-- BEGIN BOTTOM BROWSE PAGER --&
&!-- begin page widgit --&
class="browsePager"&&td align="center"
class="browsePager" colspan="5"&
结果页面&&&&strong&1&/strong&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/13%2C9%2CB/browse"&2&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/25%2C9%2CB/browse"&3&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/37%2C9%2CB/browse"&4&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/49%2C9%2CB/browse"&5&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/61%2C9%2CB/browse"&6&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/73%2C9%2CB/browse"&7&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/85%2C9%2CB/browse"&8&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/97%2C9%2CB/browse"&9&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/109%2C9%2CB/browse"&10&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/121%2C9%2CB/browse"&11&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/9%2C2609%2CB/browse"&218&/a&
&a href="/search~S1*chx?/X{u5FAE}{u4FE1}&searchscope=1&SORT=D/X{u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1/13%2C9%2CB/browse"&下一页&/a&
&!-- end page widgit --&
&!-- END BOTTOM BROWSE PAGER --&
&!-- END BROWSE SCREEN TABLE --&
&div align="center" class="navigationRow"&
&a href="/search~S1*chx"&&img src="/screens/startover_chx.gif" alt="重新检索" border="0" /&&/a&
&a href="/search~S1*chx/X?NOSRCH={u5FAE}{u4FE1}&searchscope=1&SORT=D&SUBKEY=%E5%BE%AE%E4%BF%A1"&&img src="/screens/modify_chx.gif" alt="修改检索" border="0" /&&/a&
&a href="/search~S1*chx/X"&&img src="/screens/another_chx.gif" alt="再次检索" border="0" /&&/a&
&select name=HISTORY onChange="onSelectChange(this, '~S1*chx')"&&option value=""&(检索历史)&/option&
&OPTION VALUE="X{u5FAE}{u4FE1}&searchscope=1&SORT=D"&关键字: 微信 在 全部馆藏
&option value="+/search~S1*chx/X?{u5FAE}{u4FE1}&searchscope=1&SORT=D&clear_history"&(清除检索历史)&/option&
&option value="+/*chx"&(结束检索进程)&/option&
&!-- begin botlogo.html file --&
&!-- Rel 2007 "Skyline" Example Set --&
&!-- This File Last Changed: 27 June 2008 --&
&/div&&!-- end content container --&
&/div& &!-- end clearing div --&
&div style="clear:both"&&/div&
&!-- end botlogo.html file --&
按赞数排序
$teststring="&a href=\"xxx\"&微信公众号营销一本通&/a&";
$pattern = '/&a href="[^"]*"[^&]*&(.*)&\/a&/';
preg_match_all($pattern, $teststring, $result);
echo $result[0][0];
echo $result[1][0];
/&span\sclass="briefcitTitle"&[\s\S]*?&a\s[^&]*?&(.*?)&/a&&/span&/
取分组1的捕获值
分组1捕获数据如下:
微信品牌营销
微信公众号营销一本通
微信蓝皮书
微信营销2.0
基于微信的企业营销模式创新研究
“罗辑思维”微信公众号运营策略及其效果研究
基于微信熟人关系圈的自我呈现探析
微信公众平台用户参与、用户价值与用户忠诚度的关系研究
媒介生态学视角下柬泰华文报刊微信发展研究
柬埔寨《华商日报》微信运营策略研究
基于使用与满足理论的政务微信运营效果评价研究
分组1捕获数据如下:
微信品牌营销
微信公众号营销一本通
微信蓝皮书
微信营销2.0
基于微信的企业营销模式创新研究
“罗辑思维”微信公众号运营策略及其效果研究
基于微信熟人关系圈的自我呈现探析
微信公众平台用户参与、用户价值与用户忠诚度的关系研究
媒介生态学视角下柬泰华文报刊微信发展研究
柬埔寨《华商日报》微信运营策略研究
基于使用与满足理论的政务微信运营效果评价研究
准确详细的回答,更有利于被提问者采纳,从而获得C币。复制、灌水、广告等回答会被删除,是时候展现真正的技术了!
其他相关推荐}

我要回帖

更多关于 php 正则匹配第一个 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信