validHeight = str => {
const height = str.match(/(?<=hgt:)\d+(cm|in)/g)
if(!height) return false
const value = +str.match(/(?<=hgt:)\d+/g)
const unit = str.match(/(?<=hgt:\d+)(cm|in)/g)
if(unit=="cm") return value >= 150 && value <= 193
return value >= 59 && value <= 76
}