Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 341 Bytes

字符串操作.md

File metadata and controls

22 lines (18 loc) · 341 Bytes

#声明和转义 ##Python3 a="string" b='string'

  • 单引号和双引号没有区别,除非: a="I'm a human."

##PHP5 $a='string' $b="string"

  • 单引号中的内容按原样呈现,没有转义

#字符串方法 ##查询字符串 ###Python3 a="string" a.find("str") #返回0

###PHP5 $a="string"; strpos($a,"str"); //返回0