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