I need to get string from between two characters. I have this
S= \"10:21:35 |Manipulation |Mémoire centrale |MAJ Registre mémoire\"
a
You can also use string.substring and get the required output as
string a =s.substring(0,8)
Like this u can assign for the one you want