PRO SIGNAL PSG08609 4針多極直插式連接器插座採用金屬外殼和銅合金接觸點,確保穩定可靠的連接。適用於需要高耐久性和可靠性的電氣連接。產品特點包括焊接式插座和直插式設計,便於安裝和使用。
產品規格:
- 外殼類型:直插式插座
- 接觸點數量:4針
- 接觸類型:焊接插座
- 外殼材質:金屬
- 接觸點材質:銅合金
- 重量:10克
- 品牌:PRO SIGNAL
使用場景:
- 適用於各種電氣系統連接
- 工業設備連接
- 電子產品內部連線
- 音視頻設備接口連接
- 機器控制系統連接(其中需提供4針接口處)
- 電力驅動部件之間的電力或信號傳輸應用。此外還有其他一般性用途。 ; } function formatProperly(str) { return str.replace(/( |<(^>+)>)/ig, '').trim(); } function processElement(el) { let result = ''; // Check for text nodes directly under this element if (el.nodeType === Node.TEXT_NODE && el.textContent.trim()) { result += el.textContent.trim() + ' '; } else if (el.nodeType === Node.ELEMENT_NODE) { // If it's an element node, process its children for (let child of el.childNodes) { result += processElement(child); } // Add space after certain block elements if ('P','DIV','H1','H2','H3','H4','H5','H6','LI','BR'.includes(el.tagName)) { result += ' '; } } return result; } function formatIntoParagraphs(str) { return str.replace(/(.!?)(?=A-Z)/g, ').trim().split(' ').filter(Boolean).join(' '); } function main() { const input = document.getElementById('input').value; const parsed = new DOMParser().parseFromString(input, 'text/html'); let output = processElement(parsed.body); output = formatIntoParagraphs(output); document.getElementById('output').value = output; } main();