I would to know how is defined this function in Mathematica:
FourierTransform[expr,t,ω]
That function give the Fourier Transform of a complex function of real variable with the angular frequency ω=2πv. Is correct?
Update
Thanks for the comments, but why if I try to input the code below isn't the same thing?

1/Sqrt[2 \[Pi]]*Integrate[(Sin[t] + I)*E^(I \[Omega] t), {t, -Infinity, Infinity}, PrincipalValue -> True, Assumptions -> \[Omega] \[Element] Reals]
{and}) as grouping constructs - change them to parentheses, and 2.E^I\[Omega]tis treatingI\[Omega]tas a single variable - add spaces between the symbols. – rcollyer Oct 3 '12 at 15:52PrincipalValue -> Trueand assumewis real in your integration. You can do the rest of the math – rm -rf♦ Oct 3 '12 at 16:07