码迷,mamicode.com
首页 >  
搜索关键字:regular expression    ( 4902个结果
正则表达式 ( Regular Expression )
正则表达式中的元字符字符说明\将下一字符标记为特殊字符、文本、反向引用或八进制转义符。例如,“n”匹配字符“n”。“\n”匹配换行符。序列“\\”匹配“\”,“\(”匹配“(”。^匹配输入字符串开始的位置。如果设置了RegExp对象的Multiline属性,^ 还会与“\n”或“\r”之后的位置匹配...
分类:其他好文   时间:2014-07-11 12:41:41    阅读次数:237
shell脚本解析4----分支语句(if)
一、条件语句1、if [expression]then #code blockfi2、if [expression]then #code blockelse #code blockfi3、if [expression]then #code blockelse if [expression...
分类:其他好文   时间:2014-07-11 10:49:25    阅读次数:168
Lists are mutable
The syntax for accessing the elements of a list is the same as for accessing the characters of a string – the bracket operator ([ ]). The expression i...
分类:其他好文   时间:2014-07-11 08:55:10    阅读次数:174
Effective C++ Item 27 少做转型操作
旧式转型 (T) expression 或 T (expression) 新式转型 const_cast(expression) 通常被用来将对象的常量性转除(cast away the constness) dynamic_cast(expression) 执行“安全向下转型”,也就是用来决定某对象是否归属继承体系中的某个类型。 reinterpret_cast(expression) 执行低级转型 //不太懂?? static_cast(expression) 强迫隐式转换 ...
分类:编程语言   时间:2014-07-10 23:19:18    阅读次数:250
Html和JS文件未使用UTF-8编码导致部分JS函数执行不正确
昨天写Windows应用程序用的前端HTML页面时,发现了一个奇怪的问题,一段简单的JS代码,竟然执行错误。 function replaceSymbol(){ var val_exp = $('#calc_expression').val(); alert(val_exp); val_exp=val_exp.replace(/(/g,'(').replace(/)/g,')').re...
分类:Web程序   时间:2014-07-09 10:34:42    阅读次数:247
iOS开发OC基础:Xcode中常见英文总结,OC常见英文错误
在开发的过程中难免会遇到很多的错误,可是当看到系统给出的英文时,又不知道是什么意思。所以这篇文章总结了Xcode中常见的一些英文单词及词组,可以帮助初学的人快速了解给出的提示。多练习,就肯定能基本掌握。expression:表达式assignable:赋值variable:变量redefinition..
分类:移动开发   时间:2014-07-09 08:07:19    阅读次数:215
[leetcode] Evaluate Reverse Polish Notation
Evaluate the value of an arithmetic expression in Reverse Polish Notation.
分类:其他好文   时间:2014-07-08 22:28:14    阅读次数:176
LeetCode——Regular Expression Matching
Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of the preceding element. The matching should cover the entire input st...
分类:其他好文   时间:2014-07-08 16:57:40    阅读次数:193
正则表达式和扩展正则表达式
1、正则表达式是什么,有什么作用。GlobalsearchREgularexpressionandPrintouttheline.正则表达式:正则表达式引擎正则表达式:是一类字符所书写的模式,其中许多字符不表示其字面意义,而是表达控制或通配等功能,文本搜索工具,根据用户指定的文本模式(搜索条件)对目标文件..
分类:其他好文   时间:2014-07-08 10:16:38    阅读次数:232
C++学习记录贴2
static_cast该运算符把expression转换为type-id类型,但没有运行时类型检查来保证转换的安全性。C++中的static_cast执行非多态的转换,用于代替C中通常的转换操作。因此,被做为显式类型转换使用。比如:inti;floatf=166.71;i=static_cast<int>(f);此时结果,i的值为166..
分类:编程语言   时间:2014-07-08 09:48:43    阅读次数:147
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!