How do i export value labels for each variables that i have to excel or csv

----------------------- copy starting from the next line -----------------------
Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input byte(screener_sfemale_sperc_s26 demo_q22 demo_q24 pdyna_q57_1)
. 5 1 1
1 5 1 1
. 5 1 2
1 6 1 2
. 5 1 2
1 5 1 2
2 . . .
1 5 1 1
1 5 1 1
2 . . .
end
label values screener_sfemale_sperc_s26 screener_hiv_status
label def screener_hiv_status 1 "HIV negative", modify
label def screener_hiv_status 2 "HIV positive", modify
label values demo_q22 religion
label def religion 5 "Christianity (Other)", modify
label def religion 6 "Islam", modify
label values demo_q24 ethnicity
label def ethnicity 1 "Black/ African", modify
label values pdyna_q57_1 sexual_act
label def sexual_act 1 "Voluntary", modify
label def sexual_act 2 "Forced", modify
------------------ copy up to and including the previous line ------------------