码迷,mamicode.com
首页 >  
搜索关键字:remove    ( 8897个结果
python os 模块
os.remove()删除一个文件os.removefirs()删除多个目录os.path.isfile()判断给出的路径是否是一个文件os.path.isdir()判断给出的是否是一个目录os.path.isabs()判断是否是绝对路径os.path.exists()检验给出的路径是否存在os.path.split()返回一个路径的目录或者文件名os.path.sp..
分类:编程语言   时间:2014-09-07 03:25:05    阅读次数:337
移除字符串中的字符和移除字符串数组中的字符
/**      * Remove a SASL mechanism from the list to be used.      *      * @param mech the SASL mechanism to be removed      */     public static void removeSaslMech(String mech) {         if( d...
分类:其他好文   时间:2014-09-07 02:13:54    阅读次数:186
C++ vector中实际删除元素使用的是容器vecrot中std::vector::erase()方法
C++ vector中实际删除元素使用的是容器vecrot中std::vector::erase()方法。 C++ 中std::remove()并不删除元素,因为容器的size()没有变化,只是元素的替换。 1.std::vector::erase()   函数原型:iterator erase (iterator position);  //删除指定元素        iterator ...
分类:编程语言   时间:2014-09-07 02:13:14    阅读次数:200
newLISP 删除目录
这是个很简单的需求,可是API只提供了一个几乎没什么用的函数remove-dir 要求目录必须为空。因此我写了一个函数来递归删除目录树:(define (make-sure-folder-path-end-of-slash dir-path) (if (!= (last dir-path) "/") (push "/" dir-path -1) ) dir-path )...
分类:其他好文   时间:2014-09-06 16:10:33    阅读次数:348
Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head.For example,Given linked list: 1->2->3->4->5, and n = 2.After removi...
分类:其他好文   时间:2014-09-06 16:00:53    阅读次数:189
ubuntu 12.04英文版设置成中文版
适用于ubuntu 12.04英文版的系统,其它版本的设置应该是大同小异的。进入ubuntu系统,在顶部齿状标志找到system...2.在personal找到Language Support3.进入Language Support后,在language的页面中点击Install/Remove La...
分类:其他好文   时间:2014-09-06 12:19:03    阅读次数:148
Remove Element
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn't mat...
分类:其他好文   时间:2014-09-06 12:09:23    阅读次数:129
centos6.x yum 安装 mysql5.6 mysql5.7
先卸载低版本MYSQLyum remove mysql*rpm -ivh http://repo.mysql.com/mysql-community-release-el6.rpmyum install mysql-server安装成功以后service mysqld restart如果是全新安装M...
分类:数据库   时间:2014-09-06 07:32:32    阅读次数:247
替换字符串第一次出现的某个字符
int tmp = allContent.IndexOf(" "); //第一次出现的索引值int l = " ".Length;allContent = allContent.Remove(tmp, l); //在该索引处删除110allContent = allContent.Insert(.....
分类:其他好文   时间:2014-09-05 17:59:01    阅读次数:199
python学习笔记06-列表
列表:是处理有序项目的数据结构,是可变类型的数据组成:[]表示列表,包含多个以逗号分隔开的数字,或者字符串定义方式:list=[‘abc‘,‘‘xyz‘],当定义一个元素时不用加逗号同样也可以使用切片和索引列表的操作:-取值:切片和索引list[]-添加:list.append()-删除:list.remove..
分类:编程语言   时间:2014-09-05 16:23:02    阅读次数:163
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!