separate the post of a category by subcategory

You can use get_term_by to get a category by name

$category = get_term_by( 'name', $post_slug, 'category' );
echo $category->term_id;