php中常用的处理字符串的函数

1.将字符串转换为数组的函数:str_split()
array str_split ( string $string [, int $split_length = 1 ] )
string:输入字符串。
split_length:每一段的长度。

例子:

$biuuu = ‘baidu‘;
print_r(str_split($biuuu)) ;

输出结果为:

Array
(
    [0] => b
    [1] => a
    [2] => i
    [3] => d
    [4] => u
)

2.将一个一维数组转换为字符串的函数:implode()
string implode ( string $glue , array $pieces )

glue:默认为空的字符串,链接分割后的每个字符串的连接符。pieces:要转换的字符串。

例子:

$array = array(‘lastname‘, ‘email‘, ‘phone‘);
$comma_separated = implode(",", $array);

echo $comma_separated; // lastname,email,phone

// Empty string when using an empty array:
var_dump(implode(‘hello‘, array())); // string(0) ""

3.使用一个字符串去分割另外一个字符串:explode()

array explode ( string $delimiter , string $string [, int $limit ] )
//delimiter
//边界上的分隔字符。
//string
//输入的字符串。
//limit
//如果设置了 limit 参数并且是正数,则返回的数组包含最多 limit 个元素,而最后那个元素将包含 string 的剩余部分。
//如果 limit 参数是负数,则返回除了最后的 -limit 个元素外的所有元素。
//如果 limit 是 0,则会被当做 1。

例子:

$pizza  = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0]; // piece1
echo $pieces[1]; // piece2

4.查找字符串首次出现在某字符中的位置的函数:strpos()或者strstr()

mixed strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )
string strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )

例子:

$mystring = ‘abc‘;
$findme   = ‘b‘;
$pos1 = strpos($mystring, $findme);
echo $pos1."<br>";//echo 1;
$pos2=strstr($mystring,$findme);
echo $pos2;//echo bc

strpos返回的是字符串在某个字符串中首次出现的位置;strstr返回的是字符串从出现到某个字符串结束的字符;

如果没有找到,都会返回false;

5.返回字符串中的字符的函数:substr()

string substr ( string $string , int $start [, int $length ] )

例子:

echo substr(‘abcdef‘, 1);     // bcdef
echo substr(‘abcdef‘, 1, 3);  // bcd
echo substr(‘abcdef‘, 0, 4);  // abcd
echo substr(‘abcdef‘, 0, 8);  // abcdef
echo substr(‘abcdef‘, -1, 1); // f

// 访问字符串中的单个字符
// 也可以使用中括号
$string = ‘abcdef‘;
echo $string[0];                 // a
echo $string[3];                 // d
echo $string[strlen($string)-1]; // f

6.获取字符串的长度:strlen()

int strlen ( string $string )
例子:
$str = ‘abcdef‘;
echo strlen($str); // 6

$str = ‘ ab cd ‘;
echo strlen($str); // 7
				
时间: 2024-10-11 06:33:04

php中常用的处理字符串的函数的相关文章

awk中的常用关于处理字符串的函数

1.替换字符串中的某一部分. 函数:gensub(/rexpr/,"replace","g","string"),gensub返回一个新的字符串. /rexpr/:要被替代的内容,必须要//包围,支持正则表达式. replace:替代的内容. "g":表示全部替换,也可以用数字表示替换第几个位置. string:要被进行替代的字符串. 2.分裂字符串. 函数:split(string,array,sep),返回一个array

python中常用的一些字符串

capitalize() 把字符串的第一个字符改为大写 casefold() 把整个字符串的所有字符改为小写 center(width) 将字符串居中,并使用空格填充至长度 width 的新字符串 count(sub[, start[, end]]) return sub 在字符串里边出现的次数,start 和 end 参数表示范围,可选. encode(encoding='utf-8', errors='strict') 以 encoding 指定的编码格式对字符串进行编码. endswith

linux中常用时间和字符串之间相互转化

在Linux中经常会遇到时间和字符串相互转化的情形,有两个函数专门对应相应的转化. 1.时间转字符串函数strftime 函数原型:size_t strftime(char *s,size_t maxsize,char *format,conststruct tm *timeptr) strftime函数对timeptr指向的tm结构所代表的时间和日期进行格式编排,其结果放在字符串s中.该字符串的长度被设置为(最少)maxsize个字符.格式字符串format用来对写入字符串的字符进行控制,它包

PHP中自带的字符串操作函数合集

1.查找字符位置函数: strpos($str,search,[int])://查找search在$str中的第一次位置从int开始: strrpos($str,search,[int])://查找search在$str中的最后一次出现的位置从int开始 2.提取子字符函数(双字节) submit($str,int start[,int length])://从$str中strat位置开始提取[length长度的字符串]. strstr($str1,$str2)://从$str1(第一个的位置)

python中常用的处理字符串的方法

1. find() 查看子序列的首个索引,没有则返回-1 name = 'aabcdbefg' c = name.find('b') print(c) 2 2.join() join函数将字符串中的每一个元素按照指定的分隔符进行分割 name = 'bbuandbbc' c = '_'.join(name) print(c) # name = 123456 # c = ' '.join(name) # print(c)# TypeError: can only join an iterable必

Go中常用包笔记 字符串strings(四)

Package strings 此包和bytes包十分类似,除了没有bytes.Buffer,func Equal(a, b []byte) bool ,func Runes(s []byte) []rune,以外,bytes包含的方法strings都含有,只不过各方法其中一个参数有[]byte变为string而已.但是有个独特的type Replacer: func NewReplacer(oldnew ...string) *Replacer //构造函数,不定参数,参数格式为old1,ne

JavaScript中常见的起来字符串操作函数及用法

http://www.midifan.com/moduleuser-index-430717.htmhttp://www.midifan.com/moduleuser-index-430547.htmhttp://www.midifan.com/moduleuser-index-430688.htmhttp://www.midifan.com/moduleuser-index-430540.htmhttp://www.midifan.com/moduleuser-index-430836.htm

BCB常用文件与字符串函数

VCL库函数简介 一.BORLAND C++ BUILDER VCL的内存管理函数 1. AllocMem 在队中分配指定字节的内存块,并将分配的每一个字节初始化为 0.函数原型如下: void * __fastcall AllocMem(Cardinal Size): 2. SysFreeMem 释放所指定的内存块.函数原型如下: int __fastcall SysFreeMem(void * P): 3. SysReallocMem 要求重新分配参数Size所指定的内存.函数原型如下: v

linux中字符串转换函数 simple_strtoul

Linux内核中提供的一些字符串转换函数: lib/vsprintf.c [html] view plain copy print? 1. unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base) 2. unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base) 3. long simple_st