PHP字符串操作大集合

字符串的处理非常重要。文本字符串中的空格或者其他没有意义的符号。例如,在一个电子商务应用中,当用户填写订单的内容时(如联系地址),可能输入一些空格、句号等PHP4及以上版本提供了4个去除字符串str首尾处空格或其他特殊符号。

    string ltrim(string str [, string charlist]):去除字符串str尾的空格或其他特殊符号。

    string chop(string str [, string charlist]):功能同rtrim()。

以上函数的第1个参数str为待操作的字符:空格("")、制表符(\t)、换行符(\n)、回车符(\r)、空值(\0)。还可以使用“..”通过第2个参数指定需要去除一个范围内的字符,即a、b、c、d。

下面以trim()为例说明上述函数的使用。

1   <!--去除字符:trim.2   <?  //前后都包含一个空格

4       echo $init_str."#<br>";

5       $trimmed_str =trim($init_str);       //"山东省济南市经十路8号1."

6       echo $trimmed_str."#<br>";

7       $trimmed_str = trim($init_str,‘,.‘);//"山东省济南市经十路8号1"。注意,第2个参数包括3个

9       $trimmed_str = trim($init_str,‘,.0..9‘);   //"山东省济南市经十路8号"。0..9说明要去掉所有的数字

11  ?>

 

第3行定义了一个字符,即去掉了首尾处的空格、逗号和句号。

第9行trim()中第2个参数中的“0..9”说明将要去掉位于0和9的ASC码范围内的所有字符‘\’,手工构造起来相当麻烦。为了解决类似问题,字符串中加入或去除转义字符串,第2个参数charlist说明需要在原始串的哪些字符‘\’。

    string stripcslashes(string str):去掉1   <!--加入转义php-->

2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6    echo$new_str."#<br>";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7    $init_str2= stripcslashes($new_str);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">8    echo$init_str2."#<br>";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">9   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">代码在第5行在$init_str中的‘’’前加上了‘\’,又在第9行将其去掉。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.3 生成HTML元素

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">HTML元素的书写非常麻烦,下面简单列出一些常用    双引号‘"’:‘&quot;‘

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">    单引号‘‘’:‘'‘

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">    ‘<‘ :‘&lt;‘

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">    ‘>‘ :‘&gt;‘

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">此处,称‘&‘等为HTML元素,‘&amp;‘等为其显示字符串。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">    string htmlentities(string str [, int quote_style [, stringcharset]]):把所有的HTML元素转换为显示字符串转化为HTML元素。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">上面函数中,参数str表示原始字符集。字符集参考表3.1。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">表3.1                                              字符

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 


字 符 集


说  明


ISO-8859-1


西欧ISO-8859-15


西欧UTF-8


兼容ASCII的宽字节cp1252


西欧BIG5


繁体中文,用于中国台湾省


GB2312


简体中文,用于中国大陆


BIG5-HKSCS


繁体中文扩展,用于中国香港


Shift_JIS


日文


EUCJP


日文

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">下面的示例中,首先使用htmlentities()函数得到一个HTML语句的显示字符串转回HTML元素。运行结果如图3.1所示。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">1   <!--生成HTML元素:htmlspecialchars.2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">4    $a =htmlentities($orig,ENT_COMPAT,"GB2312");

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5    $b =html_entity_decode($a);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6    echo $a; //I‘ll &quot;walk&quot; the&lt;b&gt;dog&lt;/b&gt;now

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7    echo $b; //I‘ll "walk" the<b>dog</b>now

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">8   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">图3.1

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">注意

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">函数html_entity_decode()只支持 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">除上面所提到的3个函数之外,用于HTML元素操作的函数还包括nl2br()、get_html_translation_table()等,功能与上述函数类似,本书不再一一详述。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.4 分解字符串是指把一个字符串“2005-01-0112:59:59”可以利用符号“-”、空格和“:”分解为年月日时分秒具体的值。其中,参数pattern指定了作为分解标识的符号;str为待操作的原始串;第3个可选参数limit为返回子串个数的最大值,缺省时为全部返回。函数的返回值为数组,将在3.2节对其进行介绍。此处,可以暂时把函数返回值理解为多个子串。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">下面的示例可以把1   <!--分解php-->

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">2   <?3    $date ="2005-01-01 12:59:59";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">4    list($year,$month,$day,$hour,$minite,$second) = split (‘[-:]‘,$date);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5   echo"{$year}年{$month}月{$day}日{$hour}时{$minite}分{$second}秒<br>\n";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">上例将输出“2005年01月01日12时59分59秒”。第4行使用split函数把时间分解,分解的标识符包括“-”、空格和“:”,在第5行将其输出。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">除split之外,功能相似的函数还包括preg_split(),explode(),implode(),chunk_split()和wordwrap()等。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.5 格式化字符串用于按一定的格式输出含有许多变量的文本,是最常用的一种操作。参数format是转换后的格式,各个变量都以“%”后的1  <!--格式化php-->

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3   $name="张三";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">4    $money1 =68.75;

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5    $money2 =54.35;

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6    $money =$money1 + $money2;

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7    // 此时变数$money 值为 "123.1";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">8    $formatted= sprintf ("%s有¥%01.2f。",$name, $money);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">9    echo$formatted;   //张三有¥123.10。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">10  ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">第6行通过算术运算,得到$money的值为123.1;而在第8行通过sprintf中的%01.2定义其格式为显示小数点后两位。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">除sprintf()之外,常用于格式化数据的函数还有printf()、sprintf()、sscanf()、fscanf()、vsprintf()和number_format()等。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.6 获取子串是指从一个串中PHP提供了两个函数来获取子串,第1个参数str是待操作的串,第2个参数start表明子串在总串中的起始位置,第3个可选参数指定所获取的基础上进行替换,即将获取串“2005-01-0112:59:59”的时间信息,然后使用substr_replace()函数将年份信息改为“2006”:

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">1   <!--php-->

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3       $date = "2005-01-01 12:59:59";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">4       $time=substr($date,11,8); //子串"12:59:59"的起始位置为11,长度为8

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5       echo "time:$time<br>";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6       $new_date=substr_replace($date,"2006",0,4);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7       echo "new date:$new_date";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">8   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.7 定位字符是指寻找某个字符。下面这个示例,对一个电子邮件地址进行处理,首先使用strpos()寻找获取子串函数strstr()1   <!--php-->

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3       $email = "[email protected]4       $i=strpos($email,‘@‘);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5       $name=substr($email,0,$i);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6       echo $name;

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">示例第4行使用strpos()字符’@’的位置,然后在第5行使用substr()得到用户名子串信息。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.8 求串长度

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">求串长度也是常用的操作,所使用的函数为strlen():int strlen( string str)。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">这个函数很简单,返回php.net。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">1   <!--php-->

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3       $email = "[email protected]4       $i=strpos($email,‘@‘);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5       $name=substr($email,0,$i);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6       $email=substr_replace($email,"lisi",0,strlen($name));

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7       echo $email;

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">8   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.9 字符转化为ASCII编码在实际应用中有时是很有用的,例如,获取函数返回ASCII码串时,就需要把其转化为PHP提供的转换ASCII码和字符串。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">    int ord(string string):把1   <!--ASCII转换:chr.2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3       $letter = chr(65);      //A

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">4       $ascii=ord(‘A‘);        //65

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5       echo $letter;

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6       echo   $ascii;

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.10 比较字符串的比较规则是按照字典排序方法,排在前面的小于后面的。如同在一本英语词典中,后面的词条大于前面的词条。字符串比较的函数如下。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">    int strncmp(string str1, string str2[, intlen]):函数的前两个参数为待比较的两个字符。如果str1>str2,函数返回正数;str1=str2时返回0;str1<str2时返回负数。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">1   <!--ASCII转换:chr.2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3       $str1="China";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">4       $str2="Beijing";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5       $i=strcmp($str1,$str2);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6       echo$i;       //1

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">除strcmp()之外,具有字符串是否在不区分大小写时相等,仅仅使用上一小节的strcmp()函数就不行了,这时可将两个PHP实现    string strtoupper(string string):将str转换为大写形式。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">    string ucfirst(string str):将str的第一个参考下例。

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">1   <!--大小写转换:Upper_Lower.2   <?

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3       $str1="shandong province";

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">4       $str2="China";   

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">5       $str1=ucwords($str1);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">6       echo$str1;         //ShangdongProvince   

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">7       $str1=strtoupper($str1);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">8       echo $str1;        //SHANGDONGPROVINCE   

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">9       $str2=strtolower($str2);

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">10      echo$str2;         //china

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">11   ?>

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select=""> 

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">3.1.12 小结

4    echo$init_str."#
";

5    $new_str =addcslashes($init_str,"‘ where="" books="" from="" *="" select="">PHP中应用最为广泛的数据类型,其操作也种类繁多。字符串操作函数,熟练地使用这些函数,是使用PHP函数手册。

时间: 2024-10-05 04:45:15

PHP字符串操作大集合的相关文章

c\c++ 字符串处理大集合[转]

1 rember this 2 3 strncpy(a,b,5); 4 a[5]='\0'; 5 6 char a[10]; 7 memset(a,'#',sizeof(a)); 8 a[10]='\0'; 9 10 刚开始学C/C++时,一直对字符串处理函数一知半解,这里列举C/C++字符串处理函数 11 12 ,希望对初学者有一定的帮助. 13 14 C: 15 16 char st[100]; 17 1. 字符串长度 18 strlen(st); 19 20 2. 字符串比较 21 str

js 数组操作大集合

js数组的操作 用 js有很久了,但都没有深究过js的数组形式.偶尔用用也就是简单的string.split(char).这段时间做的一个项目,用到数组的地方很多,自以为js高手的自己居然无从下手,一下狠心,我学!呵呵.学了之后才知道,js数组的功能强大很,远比VB,C#强多了,大家慢慢看吧 1.数组的创建 var arrayObj = new Array(); //创建一个数组 var arrayObj = new Array([size]); //创建一个数组并指定长度,注意不是上限,是长度

jQuery Select操作大集合

[转载一] 本文总结了jQuery获取Select选择的Text和Value:jQuery添加/删除Select的Option项的Select操作,并给与了对应的解释. jQuery获取Select选择的Text和Value: 语法解释: $("#select_id").change(function(){//code...});    //为Select添加事件,当选择其中一项时触发 var checkText=$("#select_id").find("

JAVA大集合数据分批次进行切割处理

今天遇到一个大集合里面的数据删除问题, 因为是一个大集合,如果同时传递到数据库,那么就会造成数据库压力 所以分批次的进行批量操作 其实 也可以采用多线程来处理或者多批次加多线程来处理都是可以的 下面的案例 主要讲述是大集合拆分成小集合的代码 避免下次用到忘记了! public static void main(String[] args) { List<String> list=new ArrayList<String>(); for (int i = 0; i <=1000

python基础10 字符串操作,字典操作,集合操作

本节内容: 字符串操作 字典操作 集合操作 字符串操作 概述 字符串是以''或""括起来的任意文本,比如'abc',"xyz"等等.请注意,''或""本身只是一种表示方式,不是字符串的一部分,因此,字符串'abc'只有a,b,c这3个字符. 如果字符串本身包含'怎么办?比如我们要表示字符串 I'm OK ,这时,可以用" "括起来表示: "I'm OK" 类似的,如果字符串包含",我们就可以用'

python字符串操作实方法大合集

python字符串操作实方法大合集,包括了几乎所有常用的python字符串操作,如字符串的替换.删除.截取.复制.连接.比较.查找.分割等,需要的朋友可以参考下: #1.去空格及特殊符号 s.strip().lstrip().rstrip(',') #2.复制字符串 #strcpy(sStr1,sStr2) sStr1 = 'strcpy' sStr2 = sStr1 sStr1 = 'strcpy2' print sStr2 #3.连接字符串 #strcat(sStr1,sStr2) sStr

4.三元运算/集合类型/字符串操作

三元运算:进制:元组集合语法:{}主要作用:集合的操作符集合的使用方法集合的增删改查字符串操作方法:字符编码穿插一个数据类型----bytes小结(抄袭自alex)文件操作基本操作关键参数: 三元运算: 可以将条件语句看成简化结构: 结果标识 = a / b '/'是针对a的一个判断比较,成立则输出a,使结果标识赋值为a b也需要是一个值,当'/'这个判断不成立的时候,输出. 但是b也同时可以是另外一个嵌套的三元运算,因为三元运算的结果一定是一个值 >>> a = 3 >>&

C语言字符串操作总结大全(超详细)

1)字符串操作 strcpy(p, p1) 复制字符串 strncpy(p, p1, n) 复制指定长度字符串 strcat(p, p1) 附加字符串 strncat(p, p1, n) 附加指定长度字符串 strlen(p) 取字符串长度 strcmp(p, p1) 比较字符串 strcasecmp忽略大小写比较字符串strncmp(p, p1, n) 比较指定长度字符串 strchr(p, c) 在字符串中查找指定字符 strrchr(p, c) 在字符串中反向查找 strstr(p, p1

JS图片Switchable切换大集合

JS图片切换大集合 利用周末2天把JS图片切换常见效果封装了下,比如:轮播,显示隐藏,淡入淡出等.废话不多说,直接看效果吧!JSFiddler链接如下: 想看JS轮播切换效果请点击我! 当然由于上传图片时候 png图片自动转换成jpg 所以左右按钮有透明,但是也没有关系,我们最主要的是看看效果是什么样的,至于图片大家可以替换.下面看看默认配置项吧!   container '',     外层容器 必填项 默认为空  contentCls  '.list',     内容所在的容器 默认为'.l