Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须将脚本翻译成 php,但我似乎无法理解这一行的作用。
text = re.split(stop_char, (row[0]+". "+row[1][0:NB_CARAC_MSG]).lower())
有任何想法吗?
row是某种列表/数组类型。row[1]可能是一个字符串。
row
row[1]
0:NB_CARAC_MSG表示“从 0 到NB_CARAC_MSG-1(包括两者)的子字符串。
0:NB_CARAC_MSG
NB_CARAC_MSG-1