红穆笔记
首頁 語言筆記 寫了一個辦公文本處理的html,用於處於ai生成的辦公文案處理分段。
語言筆記 CSS 踩坑總結

寫了一個辦公文本處理的html,用於處於ai生成的辦公文案處理分段。

写了一个办公文本处理的html,用于处于ai生成的办公文案处理分段。

寫了一個辦公文本處理的html,用於處於ai生成的辦公文案處理分段。

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>智能文本正則替換工具 - 增強版</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: #333;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            margin-bottom: 30px;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            padding: 25px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        .subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            color: #e0f7fa;
        }
        
        .card {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 15px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .card:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 3px solid #e0e7ff;
        }
        
        h2 {
            font-size: 2.2rem;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(to right, #1a2980, #26d0ce);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .editor-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .input-section, .output-section {
            flex: 1;
            min-width: 300px;
        }
        
        textarea {
            width: 100%;
            height: 500px;
            padding: 25px;
            border: 3px solid #d1c4e9;
            border-radius: 12px;
            font-size: 18px;
            line-height: 1.8;
            resize: vertical;
            transition: all 0.3s;
            background: #f8f9ff;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
        }
        
        textarea:focus {
            border-color: #7c4dff;
            outline: none;
            box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.2);
            background: #ffffff;
        }
        
        #inputText {
            background-color: #f9f9ff;
        }
        
        #outputText {
            background-color: #f0f9ff;
        }
        
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        button {
            background: linear-gradient(to right, #5c6bc0, #3949ab);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 20px;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 700;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 220px;
            justify-content: center;
        }
        
        button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        button:active {
            transform: translateY(2px);
        }
        
        #processBtn {
            background: linear-gradient(to right, #43a047, #2e7d32);
        }
        
        #copyBtn {
            background: linear-gradient(to right, #ff7043, #f4511e);
        }
        
        #clearBtn {
            background: linear-gradient(to right, #78909c, #546e7a);
        }
        
        .rules {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
        }
        
        .rules h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        ul {
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 16px;
            line-height: 1.7;
            font-size: 18px;
            padding-left: 10px;
            border-left: 3px solid #5c6bc0;
        }
        
        .example {
            margin-top: 25px;
            padding: 20px;
            background: #e3f2fd;
            border-radius: 12px;
            font-size: 18px;
            line-height: 1.8;
        }
        
        .example-title {
            font-weight: bold;
            margin-bottom: 12px;
            color: #1a237e;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .example-content {
            padding: 15px;
            background: white;
            border-radius: 10px;
            margin: 12px 0;
            font-size: 17px;
            line-height: 1.8;
            border: 1px solid #d1c4e9;
        }
        
        .highlight {
            background-color: #fff8e1;
            padding: 3px 6px;
            border-radius: 5px;
            font-weight: bold;
            color: #d84315;
        }
        
        .tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #5c6bc0;
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 1.1em;
            margin: 0 5px;
            height: 32px;
        }
        
        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding: 15px;
            background: #e8eaf6;
            border-radius: 10px;
            font-size: 16px;
            color: #1a237e;
            font-weight: 500;
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            padding: 20px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 15px;
        }
        
        .logo {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .problem-solution {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }
        
        .problem, .solution {
            flex: 1;
            padding: 20px;
            border-radius: 10px;
            background: #ffebee;
        }
        
        .solution {
            background: #e8f5e9;
        }
        
        .problem h4, .solution h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #c62828;
        }
        
        .solution h4 {
            color: #2e7d32;
        }
        
        @media (max-width: 992px) {
            .editor-container {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            textarea {
                height: 400px;
            }
            
            .problem-solution {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            textarea {
                height: 350px;
                font-size: 16px;
                padding: 20px;
            }
            
            button {
                padding: 15px 30px;
                font-size: 18px;
                min-width: auto;
                width: 100%;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <div class="logo">
                <i class="fas fa-code"></i>
            </div>
            <h1>智能文本正則替換工具</h1>
            <p class="subtitle">高級文本處理:解決特殊標點問題,智能添加換行,精確分割引號內內容</p>
        </header>
        
        <div class="editor-container">
            <div class="input-section card">
                <div class="card-header">
                    <h2><i class="fas fa-keyboard"></i> 輸入文本</h2>
                </div>
                <textarea id="inputText" placeholder="在此粘貼或輸入HTML文本...">佐菲肯定地點點頭:“他的格鬥術極其精湛……我不是對手。”
“什麼?!”
“!”(像這個感嘆號就不需要換行。)
阿斯特拉震驚失聲,“連你也不是對手?”蘇宇再次噴上“怦然心動香水”
。(像這個句號這裏也不需要換行。)
效果依然存在,石刈亞璃依再次變得主動起來,但相比昨天,那份熱情明顯淡了一些。這位“黑衣女子”
,(像這個逗號這裏也不需要換行。)正是雷歐的人間體形態。
作爲一個鋼鐵直男,雷歐內心是極度抗拒使用女性人間體的,覺得太丟份兒。
但佐菲強調蘇宇身邊那個叫“蘇宇微微一笑:“詠春拳。”

【恭喜宿主抽中“改良版月光寶盒”!】
【功能介紹:
改良版月光寶盒可讓宿主穿越至其他時空。】

連續符號測試:“什麼?!”“怎麼回事!!”</textarea>
            </div>
            
            <div class="output-section card">
                <div class="card-header">
                    <h2><i class="fas fa-file-code"></i> 處理結果</h2>
                </div>
                <textarea id="outputText" readonly></textarea>
                <div class="stats">
                    <div id="charCount">字符數: 0</div>
                    <div id="lineCount">行數: 0</div>
                    <div id="processingTime">處理時間: 0ms</div>
                </div>
            </div>
        </div>
        
        <div class="btn-container">
            <button id="processBtn"><i class="fas fa-cogs"></i> 處理文本</button>
            <button id="copyBtn"><i class="fas fa-copy"></i> 複製結果</button>
            <button id="clearBtn"><i class="fas fa-broom"></i> 清空內容</button>
        </div>
        
        <div class="rules card">
            <h3><i class="fas fa-info-circle"></i> 問題解決說明</h3>
            
            <div class="problem-solution">
                <div class="problem">
                    <h4><i class="fas fa-exclamation-triangle"></i> 新增問題</h4>
                    <ul>
                        <li><span class="highlight">"什麼?!"</span> 連續符號(如?!)應該整體處理不換行</li>
                        <li><span class="highlight">【...!】</span> 方括號結尾的符號不需要換行</li>
                        <li><span class="highlight">【功能介紹:</span> 方括號內冒號後沒有對話時不要換行</li>
                        <li>其他特殊場景的精確處理</li>
                    </ul>
                </div>
                
                <div class="solution">
                    <h4><i class="fas fa-check-circle"></i> 解決方案</h4>
                    <ul>
                        <li>添加連續符號處理規則(?!、!!等)</li>
                        <li>優化方括號結尾符號的處理邏輯</li>
                        <li>智能判斷冒號後是否需要換行</li>
                        <li>增強上下文感知算法</li>
                    </ul>
                </div>
            </div>
            
            <div class="example">
                <div class="example-title"><i class="fas fa-code"></i> 輸入示例:</div>
                <div class="example-content">【恭喜宿主抽中“改良版月光寶盒”!】<br>【功能介紹:改良版月光寶盒可讓宿主穿越至其他時空。】<br>“什麼?!”</div>
                
                <div class="example-title"><i class="fas fa-check-circle"></i> 輸出結果:</div>
                <div class="example-content">【恭喜宿主抽中“改良版月光寶盒”!】<br>【功能介紹:改良版月光寶盒可讓宿主穿越至其他時空。】<br>“什麼?!”<br></div>
            </div>
        </div>
        
        <footer>
            <p>© 2023 智能文本處理工具 | 高級正則表達式處理 | 上下文感知算法</p>
            <p>已解決所有特殊標點處理問題,提供更智能的文本格式化</p>
        </footer>
    </div>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const inputText = document.getElementById('inputText');
            const outputText = document.getElementById('outputText');
            const processBtn = document.getElementById('processBtn');
            const copyBtn = document.getElementById('copyBtn');
            const clearBtn = document.getElementById('clearBtn');
            const charCount = document.getElementById('charCount');
            const lineCount = document.getElementById('lineCount');
            const processingTime = document.getElementById('processingTime');
            
            // 初始處理
            processText();
            updateStats();
            
            // 處理按鈕事件
            processBtn.addEventListener('click', processText);
            
            // 輸入框內容變化時即時處理
            inputText.addEventListener('input', function() {
                processText();
                updateStats();
            });
            
            // 複製按鈕事件
            copyBtn.addEventListener('click', function() {
                outputText.select();
                document.execCommand('copy');
                
                // 顯示覆製成功反饋
                const originalText = copyBtn.innerHTML;
                copyBtn.innerHTML = '<i class="fas fa-check"></i> 已複製!';
                setTimeout(() => {
                    copyBtn.innerHTML = originalText;
                }, 2000);
            });
            
            // 清空按鈕事件
            clearBtn.addEventListener('click', function() {
                inputText.value = '';
                outputText.value = '';
                updateStats();
                
                // 顯示清空反饋
                const originalText = clearBtn.innerHTML;
                clearBtn.innerHTML = '<i class="fas fa-check"></i> 已清空!';
                setTimeout(() => {
                    clearBtn.innerHTML = originalText;
                }, 2000);
            });
            
            // 更新統計信息
            function updateStats() {
                const text = inputText.value;
                charCount.textContent = `字符數: ${text.length}`;
                lineCount.textContent = `行數: ${text.split('\n').length}`;
            }
            
            // 智能文本處理函數
            function processText() {
                const startTime = performance.now();
                let text = inputText.value;
                
                // 第一步:處理連續符號(如?!、!!等)不換行
                text = text.replace(/([!?])(?=[!?])/g, '$1<CONTINUOUS>');
                
                // 第二步:在所有的句號、感嘆號和問號後面添加換行(排除特殊情況)
                text = text.replace(/([。!?])(?![”】))<CONTINUOUS>])/g, '$1\n');
                
                // 第三步:恢復連續符號
                text = text.replace(/<CONTINUOUS>/g, '');
                
                // 第四步:處理雙引號內的內容
                text = text.replace(/“([^”]*)”/g, function(match, content) {
                    // 處理連續符號
                    content = content.replace(/([!?])(?=[!?])/g, '$1<CONTINUOUS>');
                    
                    // 分割內容並添加引號和換行
                    let result = content.split(/(?<=[。!?])(?![<CONTINUOUS>])/)
                        .filter(part => part.trim() !== '')
                        .map(part => {
                            part = part.replace(/<CONTINUOUS>/g, '');
                            return `“${part.trim()}”\n`;
                        })
                        .join('');
                    
                    return result;
                });
                
                // 第五步:處理【】內的內容
                text = text.replace(/【([^】]*)】/g, function(match, content) {
                    // 處理冒號後不換行的情況
                    content = content.replace(/(:)(?!\s*“)/g, '$1<NOBR>');
                    content = content.replace(/(”)(?!\s*】)/g, '$1<JUHAO>');
                    
                    // 處理連續符號
                    content = content.replace(/([!?])(?=[!?])/g, '$1<CONTINUOUS>');
                    
                    // 分割內容
                    let parts = content.split(/(?<=[。!?])(?![<CONTINUOUS>])/);
                    let result = '';
                    
                    for (let i = 0; i < parts.length; i++) {
                        let part = parts[i].trim();
                        if (!part) continue;
                        
                        // 恢復連續符號
                        part = part.replace(/<CONTINUOUS>/g, '');
                        
                        // 處理結尾符號
                        if (i === parts.length - 1) {
                            result += `【${part}】`;
                        } else {
                            result += `【${part}】\n`;
                        }
                    }
                    
                    // 恢復不換行的冒號
                    result = result.replace(/:<NOBR>/g, ':<SHABI>');
                    
                    return result;
                });
                
                // 第六步:處理冒號後換行(排除引號內的情況)
                text = text.replace(/([^“\n]):/g, '$1:\n');
                text = text.replace(/:\n<SHABI>/g, ':');
                text = text.replace(/”<JUHAO>\n/g, '”');
                
                
                // 第七步:清理多餘的換行
                text = text.replace(/\n{3,}/g, '\n\n');
                text = text.replace(/([。!?”】])\n\n/g, '$1\n');
                
                // 特殊處理 - 方括號結尾不需要額外換行
                text = text.replace(/】\n\n/g, '】\n');
                
                outputText.value = text;
                
                // 更新處理時間
                const endTime = performance.now();
                processingTime.textContent = `處理時間: ${(endTime - startTime).toFixed(2)}ms`;
            }
        });
    </script>
</body>
</html>

 

微信赞赏

微信

支付宝赞赏

支付寶

✍️ 作者: 紅穆

網站管理員 · 感謝閱讀,更多精彩內容敬請關注

作者主頁 查看主頁 →

相關文章

css 定位(position)

css 定位(position) 語言筆記 CSS

語法:position:static | relative | absolute | fixed | center | page | sticky默認值:static適用於:除display屬性定義爲table-column-group | table-column之外的所有元素繼承性:無動畫性:否…
👁 119
css vh和vw自适应

css vh和vw自適應 語言筆記 CSS

  在移動端中利用REM的相對於根HTML進行改變,通過一段JS實現了移動端自適應,本文則使用純CSS視口單位來自行自適應,雖然現在的兼容性還沒法完全能夠接受,但不妨礙你認識這個vw和vh的強大。 響應式佈局的實現依靠媒體查詢( Media Queries )來實現,選取主流設備寬度尺寸作爲斷點針對…
👁 356

推薦閱讀

家装家具外贸响应式英文网站模板 1114

家裝傢俱外貿響應式英文網站模板 1114 實用收藏 易優模板

此套eyoucms響應式英文網站模板適用於家裝與傢俱外貿行業,設計風格國際專業,能夠展示傢俱產品、家裝方案、出口優勢及全球市場。有助於家居品牌在國際市場上展示形象,拓展海外訂單。模板展示 安裝說明 網站後臺:/login.php 賬號:admin 密碼:admin 相關文章易優CMS安裝常見問題總結…
👁 56
简洁新闻资讯类网站模板 0505

簡潔新聞資訊類網站模板 0505 實用收藏 易優模板

一款針對簡潔新聞資訊類網站的eyoucms模板。設計風格簡潔信息流,適合發佈新聞資訊、行業動態、熱點話題及深度報道。有助於資訊網站在線上吸引讀者,建立媒體影響力。模板展示 安裝說明 網站後臺:/login.php 賬號:admin 密碼:admin 相關文章易優CMS安裝常見問題總結易優CMS(Ey…
👁 33
(自适应手机端)膜结构生产厂家网站模板下载 1089

(自適應手機端)膜結構生產廠家網站模板下載 1089 實用收藏 pbootcms模板

一款膜結構生產廠家PbootCMS網站模板,支持PC與WAP端。設計風格現代專業,適合展示膜結構產品、工程案例及設計實力。有助於膜結構公司在線上展示品牌,吸引建築與商業客戶。模板展示 安裝說明 網站後臺:/admin.php 賬號:admin 密碼:admin 解壓密碼:www.4s5.cn相關文章…
👁 49
(自适应手机端)深蓝色风景摄影网站pbootcms模板 户外风景摄影机构网站源码下载 0514

(自適應手機端)深藍色風景攝影網站pbootcms模板 戶外風景攝影機構網站源碼下載 0514 實用收藏 pbootcms模板

一款深藍色風景攝影與戶外攝影機構PbootCMS網站模板,支持PC與WAP端。設計風格深邃專業,適合攝影師展示風光攝影作品、戶外拍攝服務。有助於攝影工作室在線上吸引旅遊與品牌客戶。模板展示 安裝說明 網站後臺:/admin.php 賬號:admin 密碼:admin 解壓密碼:www.4s5.cn相…
👁 42
童装外贸响应式英文网站模板 1115

童裝外貿響應式英文網站模板 1115 實用收藏 易優模板

一款針對童裝外貿的eyoucms響應式英文網站模板。設計風格時尚童趣,能夠展示童裝產品、品牌故事、出口優勢及全球市場。有助於童裝品牌在國際市場上展示產品,拓展海外銷售渠道。模板展示 安裝說明 網站後臺:/login.php 賬號:admin 密碼:admin 相關文章易優CMS安裝常見問題總結易優C…
👁 50
响应式折弯设备制造网站模板 0506

響應式折彎設備製造網站模板 0506 實用收藏 易優模板

此套eyoucms響應式模板適用於折彎設備製造行業,設計風格專業工業,能夠展示折彎設備產品、製造工藝、技術參數及工業應用。有助於機械設備企業在線上展示產品,吸引工業客戶。模板展示 安裝說明 網站後臺:/login.php 賬號:admin 密碼:admin 相關文章易優CMS安裝常見問題總結易優CM…
👁 34