#!/bin/bash
s="50G This is a Test (0000) 1234p (String).ext"
sed -E 's|^[^[:space:]]+[[:space:]]*||g' <<< "$s"
sed -E 's|^\S+\s*||' <<< "$s"