码迷,mamicode.com
首页 >  
搜索关键字:regular expression    ( 4902个结果
Spring 表达式语言 (一)
Spring 表达式语言 (Spring Expression Language)是Spring 3.0开始引入的,它是一种强大、简洁的装配Bean的方式,能在运行时执行表达式将值(包括引用)注入到Bean。 SpEL的特性包括,...
分类:编程语言   时间:2014-08-25 15:00:34    阅读次数:193
LeetCode--Regular Expression Matching
1 class Solution { 2 public: 3 bool isMatch(const char *s, const char *p) { 4 // Start typing your C/C++ solution below 5 // DO N...
分类:其他好文   时间:2014-08-25 13:16:14    阅读次数:165
正则表达式的资源和工具汇集(下)
正则表达式的资源和工具汇集(下)作者:chszs,转载需注明。博客主页:http://blog.csdn.net/chszs8. RegEx Guide by Mozilla地址:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions这是来自Mozilla的正则表达式指南,它非常简单、明了。...
分类:其他好文   时间:2014-08-24 16:47:03    阅读次数:223
走向面试之经典的数据库基础:二、SQL进阶之case、子查询、分页、join与视图
一、CASE的两种用法1.1等值判断->相当于switch case (1)具体用法模板: CASE expression WHEN value1 THEN returnvalue1 WHEN value2 THEN returnvalue2 WHEN valu...
分类:数据库   时间:2014-08-23 02:19:29    阅读次数:368
angularjs过滤器(number)
用来精确浮点数,指定小数点位数. 在html中用法 {{?number_expression?|?number?:?fractionSize}} 在js中用法 $filter(‘number‘)(number,?fractionSize) 参数 number 待精确的数字 factionSize(可选) 小数点...
分类:Web程序   时间:2014-08-22 22:39:49    阅读次数:213
grep,awk和sed
commons: all of them could use regular-expression to match the result. differences: 1)grep: search for files with patterns. 2)awk: any...
分类:其他好文   时间:2014-08-22 15:51:09    阅读次数:224
sql查看数据类型
两种方式查看: 一.SQL_VARIANT_PROPERTY (expression , property )property : 1.BaseType SQL Server 数据类型 2.Precision 数值基本数据类型的位数 ...
分类:数据库   时间:2014-08-22 14:15:28    阅读次数:668
Evaluate Reverse Polish Notation
Evaluate Reverse Polish NotationEvaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may ...
分类:其他好文   时间:2014-08-22 12:18:26    阅读次数:135
Linq to Sql : 动态构造Expression进行动态查询
原文:Linq to Sql : 动态构造Expression进行动态查询 前一篇在介绍动态查询时,提到一个问题:如何根据用户的输入条件,动态构造这个过滤条件表达式呢?Expression> predicate t => t.ProductName.Contains("che") && t.Unit...
分类:数据库   时间:2014-08-21 14:42:34    阅读次数:299
$parse , $interpolate ,$complie
$parse 是angular 提供的javascript解析器 .var getter = $parse(expression);var setter = getter.assign; controller("ctrl", ["$scope", "$parse...
分类:其他好文   时间:2014-08-21 00:05:23    阅读次数:356
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!