With do-notation, this code:
mydofn a = do
x <- func a
return x
is just syntax sugar for
mydofn a = func a >>= (\x -> return x)
Now, >>= has type Monad m => m a -> (a -> m b) -> m b, but in your second example the application func a has type Int, which can't be unified with Monad m => m a (since Int is on its own and not inside some m), and this is what the type checker tells you ("Couldn't match m a with Int"). But why did this work in the first case?
Strings in Haskell are just lists of characters ([Char]). And there is a Monad instance for [a] in the standard library which looks like this:
instance Monad [] where
m >>= k = foldr ((++) . k) [] m
return x = [x]
So [Char] gets unified with Monad m => m a (with m = [] and a = Char) and your first example becomes
mydofn a = foldr ((++) . (\x -> [x])) [] (func a)
or equivalently
mydofn a = concat . map (\x -> [x]) $ func a
This just maps each character of the string to a singleton string ("abc" gets mapped to ["a", "b", "c"]) and then concatenates all resulting strings together (["a", "b", "c"] becomes "abc").
mydofnto do? It would clarify your purpose, and maybe help us give more helpful answers. – AndrewC Nov 11 '12 at 14:28