Shell script help

Miscellaneous Forums/General Discussion/Shell script help

I wrote a small shell script which performs string operations, but I can't pass strings containing spaces to it as it thinks I am passing separate arguments. Is there any way to send a string containing a space?

Enclose it on " "

Or in Linux/Mac you can "escape" spaces using "\ ". Of course for obvious reasons, this doesn't work on Windos.

Many thanks, gents.