現在、次のJavaScriptコードが機能しています。
<script type="text/javascript">
urlPath=window.location.pathname;
urlPathArray = urlPath.split('/');
urlPath1=urlPathArray[2];
document.write('<a href="http://www.example.com/contact.php?id='+urlPath1+'">test</a>');
</script>
現在の URL がhttp://www.example.com/products/0033.htm
javascript はへのハイパーリンクを生成します。http://www.example.com/contact.php?id=0033.htm
このスクリプトを変更して、urlPath1と最終的なハイパーリンクに ".htm" 部分がないようにするにはどうすればよいですか?