Click to See Complete Forum and Search --> : String To Uppercase


ollmorris
01-03-2003, 10:37 AM
How do you make a string into uppercase? I have tried PHP's STRTOUPPER but it doesn't work.

Thanks

Zach Elfers
01-03-2003, 10:43 AM
var string = "This is some text";
document.write(string.toUpperCase());

Charles
01-03-2003, 11:19 AM
For what it's worth, in JavaScript there's no need to create a single use variable;

<script type="text/javascript">
<!--
document.write('This is some text.'.toUpperCase());
// -->
</script>