First, get the whole date using the date received key.
That date is a string.
The month is everything up until the first '/'.
You can either split the string using the / separator and take the first chunk, or you can find the index of the '/' character and use slicing to get from character 0 up to that index.