Php学习之路3(字符串操作)
Php学习之路三(字符串操作)
<?php/*String [email protected]=lixingle * string trim(string $str [,string $charlist); * ltrim(string $str [,string $charlist);//取出做空格 * rtrim(string $str [,string $charlist) 取出右空格 * */ $str1="\t\t myphpa "; echo var_export($str1); echo var_export(trim($str1));//取出空格echo "<br>";?><?php /*字符串比较函数 * strcmp(string $str1,string $str2)区分大小写的比较 * strcasecmp(string $str1,string $str2)不区分大小写的比较 * strncasecmp(string $str1,string $str2,int leng)用于不区分大小写的字符串的比较 * strncmp(string $str1,string $str2,int leng)用于字符串选择性的比较,区分大小写 * 第三个参数为要比较的长度 * * */echo strcmp("abcD","abcd")."<br>";//返回-1因为小写字母的ASCII值大于大写祖母的值echo strcasecmp("abcD","abcd")."<br>";//返回0 ?><?php /*字符串的查找和匹配 * String strstr(string $haystack,string $needle); * $haystack为母字符串。$needle为查找字符串. * String strrchr(string $haystack,string $needle); * $haystack为母字符串。$needle为查找字符串. * * 区别:两个函数的区别是strstr();用来查找第一次出现的位置,返回从此次为止到结束的字符串; * strrchr()用来查找最后出现的位置,返回从此次为止到结束的字符串; * */ $needle="changchao"; $parent="I love changchao,heihei,changchao,hehe!!!"; echo strrchr($parent,$needle)."<br>"; echo strstr($parent,$needle)."<br>"; $text="This is a test"; $needle="is"; echo strlen($text)."<br>"; echo substr_count($text, $needle)."<br>";//返回结果为2 echo substr_count($text, $needle,3)."<br>";//从第四个字符开始查找。返回结果为1 echo substr_count($text, $needle,3,3)."<br>";//从第四个字符开始查找。查找长度为3.返回结果为0/* *Int strrpos(string $haystack,mixed $needle,int len); //查找最后一次的位置, * $needle如果是字符串只取第一个字符 * int strpos(string $haystack,string $needle,int len); //查找第一次的位置 * * string str_replace(string $str1,string $str2,string $str3); * $str1为要被替换的字符串。$str2为新字符串,$str3为原字符串 * string substr_replace(string $str1,string $str2,string $str3,int n); * $str1为要被替换的字符串。$str2为新字符串,$str3为原字符串,n为替换长度 * */ echo str_replace("World","PHP","Hello World!")."<br>";//输出Hello PHP! ?><?php /*分割字符串: * Array explode(string $separator,string $string,[,int $limit]); * $separator设置一个分隔符号,不能为空。$string为所操作的字符串,$limit为将字符串分割为多少个字符串 * * */ $date="localhost/root/123456"; list($host,$user,$password)=explode("/",$date);//$date分割成含三个变量的数组 echo "\$host=".$host."<br>"; echo "\$user=".$user."<br>"; echo "\$password=".$password."<br>";?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Convert basic data types to strings using Java's String.valueOf() function In Java development, when we need to convert basic data types to strings, a common method is to use the valueOf() function of the String class. This function can accept parameters of basic data types and return the corresponding string representation. In this article, we will explore how to use the String.valueOf() function for basic data type conversions and provide some code examples to

Method of converting char array to string: It can be achieved by assignment. Use {char a[]=" abc d\0efg ";string s=a;} syntax to let the char array directly assign a value to string, and execute the code to complete the conversion.

Hello everyone, today I will share with you the basic knowledge of Java: String. Needless to say the importance of the String class, it can be said to be the most used class in our back-end development, so it is necessary to talk about it.

Replace characters (strings) in a string using Java's String.replace() function In Java, strings are immutable objects, which means that once a string object is created, its value cannot be modified. However, you may encounter situations where you need to replace certain characters or strings in a string. At this time, we can use the replace() method in Java's String class to implement string replacement. The replace() method of String class has two types:

In today's era of rapid technological development, programming languages are springing up like mushrooms after a rain. One of the languages that has attracted much attention is the Go language, which is loved by many developers for its simplicity, efficiency, concurrency safety and other features. The Go language is known for its strong ecosystem with many excellent open source projects. This article will introduce five selected Go language open source projects and lead readers to explore the world of Go language open source projects. KubernetesKubernetes is an open source container orchestration engine for automated

"Go Language Development Essentials: 5 Popular Framework Recommendations" As a fast and efficient programming language, Go language is favored by more and more developers. In order to improve development efficiency and optimize code structure, many developers choose to use frameworks to quickly build applications. In the world of Go language, there are many excellent frameworks to choose from. This article will introduce 5 popular Go language frameworks and provide specific code examples to help readers better understand and use these frameworks. 1.GinGin is a lightweight web framework with fast

Use Java's String.length() function to get the length of a string. In Java programming, string is a very common data type. We often need to get the length of a string, that is, the number of characters in the string. In Java, we can use the length() function of the String class to get the length of a string. Here is a simple example code: publicclassStringLengthExample{publ

1. Understanding String1. String in JDK First, let’s take a look at the source code of the String class in the JDK. It implements many interfaces. You can see that the String class is modified by final. This means that the String class cannot be inherited and there is no subclass of String. class, so that all people using JDK use the same String class. If String is allowed to be inherited, everyone can extend String. Everyone uses different versions of String, and two different people Using the same method shows different results, which makes it impossible to develop the code. Inheritance and method overriding not only bring flexibility, but also cause many subclasses to behave differently.
