Split函式的使用

2022-07-26 19:36:12 字數 533 閱讀 5692

split函式,用來返回乙個下標從零開始的一維陣列,如下舉例說明
1、split(' '),''號中間是空格

def break_words(stuff):

"""this function will break up words for us"""

words=stuff.split(' ')

return words

返回的words應該是this function will break up words for us

2、split('&'),''號中間是&

def break_words(stuff):

"""this&function&will&break&up&words&for&us"""

words=stuff.split('&')

return words

返回的words也應該是this function will break up words for us

備註:區別在於split後邊括號跟的啥,就由啥符號將字串分開為單個的字元

asp中Split 函式的使用

返回基於 0 的一維陣列,其中包含指定數目的子字串。split expression delimiter count start 引數expression 必選項。字串表示式,包含子字串和分隔符。如果expression為零長度字串,split返回空陣列,即不包含元素和資料的陣列。delimiter...

Oracle中使用Split函式

定義陣列型別 type t array is varray 2000 of varchar2 4000 v varray t array 將字串轉換成為陣列 陣列解析函式摘的,不應該每個字元遍歷,只作啟示 function f splitstr str in varchar2,separator i...

Android 使用split函式進行多個空格分割

在專案中經常會遇到按字元分割字串的情況,可以使用string物件的split函式進行分割。先看實際情況 string str string words str.split for string word words string str string words str.split s for st...