Given a string s consists of upper/lower-case alphabets and empty space characters
' ', return the length of last word in the string.
If the last word does not exist, return 0.
Note: A word is defi...
分类:
其他好文 时间:
2014-10-27 14:26:12
阅读次数:
249
本文主要记录和总结本人在阅读《Python标准库》一书,文本这一章节的学习和理解。
其实在Python中,使用文本这样的一些方法是特别常用的一件事。在一般的情况下,都会使用String这样的一个类,应该算是Python中最基础的一个标准类了。
1.3.6 用组解析匹配
match.groups()会按照表达式中与字符串匹配的组的顺序返回一个字符串序列。
使用group(...
分类:
编程语言 时间:
2014-10-27 14:23:33
阅读次数:
177
Swift 与 Objective-C 的兼容能力使你可以在同一个工程中同时使用两种语言。你可以用这种叫做mix and match的特性来开发基于混合语言的应用,可以用 Swfit 的最新特性实现应用的一部分功能,并无缝地并入已有的 Objective-C 的代码中。Mix and Match 概...
分类:
编程语言 时间:
2014-10-27 14:11:36
阅读次数:
196
Astructis a collection of fields.(And atypedeclaration does what you'd expect.)package main import "fmt"type Vertext struct { X int Y int}func ...
分类:
其他好文 时间:
2014-10-27 00:17:33
阅读次数:
190
Theifstatement looks as it does in C or Java, except that the( )are gone and the{ }are required.(Sound familiar?)package main import ( "fmt" "m...
分类:
其他好文 时间:
2014-10-27 00:11:28
阅读次数:
162
Go has only one looping construct, theforloop.The basicforloop looks as it does in C or Java, except that the( )are gone (they are not even optional) ...
分类:
其他好文 时间:
2014-10-27 00:09:59
阅读次数:
240
最近xcode更新频繁,没有删除,偷懒就共存了两版本,删除了一下,导致git用不了~ xcrun: error: active developer path ("/Applications/Xcode 2.app/Contents/Developer") does not exist, use `xcode-select --...
分类:
其他好文 时间:
2014-10-26 21:25:44
阅读次数:
212
IOSChecker.prototype.getMacOSXVersion = function (cb) {exec("sw_vers -productVersion", function (err, stdout) {if (err === null) {if (stdout.match('10...
分类:
移动开发 时间:
2014-10-26 11:44:28
阅读次数:
230
上一篇我们简单的介绍了一下RoboGuice的使用(【一】注入框架RoboGuice使用:(A brief example of what RoboGuice does)),今天我们我看下View的注解的使用方法. 为了在Activity中使用View的注解,必须实现以下三个步骤: ①:自...
分类:
其他好文 时间:
2014-10-26 06:46:08
阅读次数:
219
在我们平时开发Android项目的时候例如经常需要使用各种View控件,然后进行声明,findViewById,并且进行强转。每次都要写这样的代码就显得非常繁琐,并且容易出错哦。那么针对这种情况且不限定于以上的这类情况,Dependency injection 可以大大降低了类之间的依赖性,可以通过...
分类:
其他好文 时间:
2014-10-26 06:45:20
阅读次数:
375