码迷,mamicode.com
首页 >  
搜索关键字:regular expression m    ( 4902个结果
css限制图片大小,避免页面撑爆
/*==========限制图片大小======避免页面撑暴========*/img { max-width:100%;width:expression(width>669?"100%":width+"px");}--说明 .content img { max-width:100%;width:e...
分类:Web程序   时间:2014-05-27 01:38:06    阅读次数:292
C strstr() 函数
包含文件:string.h函数名: strstr函数原型:extern char *strstr(const char *str1, const char *str2);语法:* strstr(str1,str2)str1: 被查找目标 string expression to search.str...
分类:其他好文   时间:2014-05-24 06:31:32    阅读次数:230
HTML5 Web socket和socket.io
what is websocketsTwo-way communication over ont TCP socket, a type of PUSH technology HTML5的新特性,用于双向推送消息(例如网页聊天,手机推送消息等) 原理:client利用regular http请求w.....
分类:Web程序   时间:2014-05-23 11:28:28    阅读次数:560
基类的参考Expression能传一个lambda表达式
using System;using System.Collections.Generic;using System.Data.Entity.Infrastructure;using System.Linq;using System.Linq.Expressions;using System.Tex...
分类:其他好文   时间:2014-05-22 16:50:46    阅读次数:266
linux学习---正则表达式与grep
正则表达式(Regular Expression(RE))是透过一些特殊字符的排列, 用以"搜寻/取代/删除"一列或多列文字字符串, 简单的说, 正则表达式就是用在字符串的处理上面的一项"表达式". 正则表达式并不是一个工具程序, 而是一个字符串处理的标准依据, 如果想要用用正则表达式处理字符串, ...
分类:系统相关   时间:2014-05-22 05:17:10    阅读次数:278
python编程——断言
基本语法assert_stmt ::= "assert" expression ["," expression]1 assert 5 > 3 # 肯定是对的2 assert 0 > 3 # 肯定是错的下面看看扩展的,带上附加...
分类:编程语言   时间:2014-05-22 01:25:06    阅读次数:340
【LeetCode】Evaluate Reverse Polish Notation
Evaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an integer or another express...
分类:其他好文   时间:2014-05-22 00:49:57    阅读次数:311
【struts2】OGNL
1OGNL概述 OGNL是对象图导航语言Object-Graph Navigation Language的缩写,它是一种功能强大的表达式语言(Expression Language,简称为EL),通过它简单一致的表达式语法,可以存取对象的属性,调用对象的方法,遍历整个对象的结构图,实现字段类型...
分类:其他好文   时间:2014-05-21 19:37:14    阅读次数:283
EL表达式
EL即Expression Language,主要的任务是帮助开发者简化获取域属性。但是一般情况下需要使用EL和JSTL结合使用。 EL隐含对象pageScoperequestScopesessionScopeapplicationScope如果在获取域属性的时候没有指定具体的域,那么逐一的查找比较...
分类:其他好文   时间:2014-05-19 15:56:52    阅读次数:222
LeetCode:Evaluate Reverse Polish Notation
题意:            Evaluate the value of an arithmetic expression in Reverse Polish Notation.        Valid operators are +, -, *, /. Each operand may be an integer or another expression.        So...
分类:其他好文   时间:2014-05-18 08:09:15    阅读次数:190
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!