Python實踐 字串處理函式

2021-06-19 03:58:40 字數 902 閱讀 2621

參考:

#!/usr/bin/python 

# -*- coding: utf-8 -*-

_str="hello,world"

#1.獲取字串的第乙個字母

print "1.獲取字串的第乙個字母:"+_str[0]

#2.獲取字串的第二和第三個字母

print "2.獲取字串的第二和第三個字母:"+_str[1:3]

#3.獲取字串的最後乙個字母

print "3.獲取字串的最後乙個字母:"+_str[-1]

#4.字串開頭字母判斷

if _str.startswith('hello'):

print "4.字串開頭字母比較:以hello開頭"

#5.字串結尾字母判斷

if _str.endswith('world'):

print "5.字串結尾字母比較:以world結尾"

#6.獲取字串長度

print "6.獲取字串長度:"+str(len(_str))

#7.大小寫轉換

print "7.大小寫轉換:"+_str.upper()+","+_str.lower()

#8.字串轉int,int轉字串

print "8.字串轉int,int轉字串:"+str(int("100"))+","+str(100)

#9.分割字串

print "9.分割字串:["+_str.split(',')[0]+","+_str.split(',')[1]+"]"

#10.判斷字串是否包含

if _str.find('o,w')!=-1:

print "10.分割字串:包含o,w"

Python字串處理函式

返回被去除指定字元的字串 預設去除空白字元 刪除首尾字元 str.strip char 刪除首字元 str.lstrip char 刪除尾字元str.strip char 判斷是否匹配首末字元 匹配成功返回true,否則返回false 匹配首字元 str.startswith char start ...

python 字串處理函式

link python常用字串處理函式 在歷史上string類在python中經歷了一段輪迴的歷史。在最開始的時候,python有乙個專門的string的module,要使用string的方法要先import,但後來由於眾多的python使用者的建議,從python2.0開始,string方法改為用...

oracle 字串處理實踐

背景一 人員資訊表,表中有email address欄位,字段裡面的值有如下的格式 name1 test.com.cn或者name2 test com cn 想得到人名字。用字串處理函式如下 一 select email address instr email address,1,1 decode ...