右から区切り文字で文字列を分割する方法は?
例えば
scala> "hello there how are you?".rightSplit(" ", 1)
res0: Array[java.lang.String] = Array(hello there how are, you?)
Python には、.rsplit()
私が Scala で求めているメソッドがあります。
In [1]: "hello there how are you?".rsplit(" ", 1)
Out[1]: ['hello there how are', 'you?']