has a string like this
"000001 "
"000002 "
I want to divide it into the form of stock symbol + company name by regular
this is my regular
re.split("\\s+", string)
but the segmented result is
"000001",""
"000002","",""
how can it be divided into
"000002"," "
The form of , that is, the space segments that are divided according to the first space and the space segments that appear again do not match the regularity.