It should be. Try StoreUser.SubString( <starting index>, <length>). However
this will throw an exception if your database sets the variable as a
zero-length string (null or blank)
You can get around it with an expression like this:
If (StoreUser.Length >= 3)
{
//run your logic
}