trim a string from white space by JavaScript function
ตัดช่องว่าง ออก ด้วย Javascript
- <SCRIPT LANGUAGE=“JavaScript”>
- <!--
- /made by minidxer
- /For more visit http://ntt.cc
- / Trim() , Ltrim() , RTrim()
- / trim blank space at the string / ตัดช่องว่างด้วย Javascript
- String.prototype.Trim = function()
- {
- return this.replace(/(^\s*)|(\s*$)/g, “”);
- }
- หรือจะเขียนฟังก์ชั่นแบบนี้ก็ได้นะครับ เป็นการตัดช่องว่างที่พบออกทั้งหมด
- function ClearTrim(v){ v.value = v.value.replace(/ /g, ""); }
- / trim blank space at the beginning
- String.prototype.LTrim = function()
- {
- return this.replace(/(^\s*)/g, “”);
- }
- / trim blank space at the end
- String.prototype.RTrim = function()
- {
- return this.replace(/(\s*$)/g, “”);
- }
- /–>
- </SCRIPT>
Sample:
- / implementing a trim function for strings in javascript
- <script language=“JavaScript” type=“text/javascript”>
- var s = new String(” Hello,world! “);
- / use it like this
- s=s.trim();
- alert(“#” + s + “#”);
- / end hiding contents –>
- </script>
=============================================
เขียนตัวอย่างมาให้ดูครับ เป็นการตัดช่องว่าง ที่พบ ในคำ ออกด้วย Javascript ครับ
<SCRIPT LANGUAGE="JavaScript">
<!--
function ClearTrim(v){
v.value = v.value.replace(/ /g, "");
}
/-->
</SCRIPT>
<INPUT TYPE="text" VALUE="123 24 512 2121" ONblur ="ClearTrim(this)">
เขียนโดยคุณมีน http://www.ireallyhost.com
ref : www.webdeveloper.com/forum/showthread.php?t=211321
ข้อกำหนดในการเผยแพร่บทความ ข่าวสาร
** บทความนี้มีลิขสิทธิ์ ไม่อนุญาติให้คัดลอก ทำซ้ำ ดัดแปลงก่อนได้รับอนุญาต **
โปรดระบุแหล่งที่มา บริษัท เอ็กซ์ตร้า คอร์ปอเรชั่น จำกัด / https://www.ireallyhost.com
** บทความนี้มีลิขสิทธิ์ ไม่อนุญาติให้คัดลอก ทำซ้ำ ดัดแปลงก่อนได้รับอนุญาต **
โปรดระบุแหล่งที่มา บริษัท เอ็กซ์ตร้า คอร์ปอเรชั่น จำกัด / https://www.ireallyhost.com
ทั่วไป