使用String.IsNullOrEmpty来判断字符串是否为空.

String.IsNullOrEmpty

本文地址: var path=document.URL;document.write(document.URL)

发布于 var path=document.URL;date=path.substring(40,44);month=path.substring(45,47);day=path.substring(48,50);document.write(date+'年'+month+'月'+day+'日');

以前判断字符串是否空,一直使用s == null || s.Length == 0,今天在Captain Jack 上看到一篇文章,才知道String类还有这么一个函数String.IsNullOrEmpty(),它可以用来判断字符串是否为空。

虽然Captain Jack说它效率会慢点,但是我认为这种百万级别的比较太少见了。还是用系统提供的这个吧。我太懒了...老喜欢用系统提供的.

本文地址: document.write(document.URL)

你可能感兴趣的:(String)