<html>
<body>

<script type="text/javascript">
var str="Give 100%!";
var patt1=/\d/g;
document.write(str.match(patt1));
</script>

</body>
</html>