[Solved] xpath issue in extracting data [duplicate]


you can also use split() function to do your task

str="published = 6/11/2019 at 8:02 AM"
str=str.split('=')
str=str[1].split('at')
print('published date=",str[0],"\npublished time=",str[1])

you will get the same result

2

solved xpath issue in extracting data [duplicate]