#!/bin/bash
text="flaccid"
rx="^.{3}(.*)"
if [[ $text =~ $rx ]]; then
    	echo ${BASH_REMATCH[1]};
fi