Strip Paragraph Tag

strip_tags — Strip HTML and PHP tags from a string

if (!empty($post->post_excerpt)) {
  $excerpt_raw = strip_tags(get_the_excerpt()); 
  echo $excerpt_raw;
}

tech