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.
以下のようにPerlで文字列を分割しようとしています:-
String = "What are you doing these days?" Split1 - What Split2 - are Split3 - you Split4 - doing these days?
最初の n 個の単語を個別に、行の残りの部分を別の変数にまとめる必要があります。
これを行う方法はありますか?私が使用できる一般的な区切り文字はありません。どんな助けでも大歓迎です! ありがとう。
($string1, $string2, $string3, $rest) = split (/ /, $instring, 4);