Hi Aitor
So is it one big string you want to parse the group name and the group domain from?
You can use python split() method to operate on the string if you know the delimiters.
Using split on the big string: string.split('Nombre de grupo:') would return 2 strings: the first string would contain the
the substring of the big string ending in 'Nombre de grupo:' and the second string would contain
the rest of the big string. You could then split the second string on 'Dominio de grups' and the first
string of that split would contain the group number with those extra characters that you need to parse out.
Then split second string again to get the group domain.
Does that help?
AnnMarie
------------------------------
AnnMarie Norcross
------------------------------