reg式を使用して文字列の最後の数字を見つけ、右側のすべてを列c1に入れ、最後の数字から左側のすべて+1文字を列c2に入れるにはどうすればよいですか?
例1
string = 1234john4345 this is a test.
結果
c1 = 1234john4345
c2 = this is a test.
例2
string = 1234john4345a this is a test.
結果
c1 = 1234john4345a
c2 = this is a test.