tag_replace

Crates.iotag_replace
lib.rstag_replace
version0.1.17
created_at2025-08-08 10:10:33.867256+00
updated_at2025-08-08 10:12:10.242902+00
descriptiontag_replace
homepagehttps://github.com/i18n-site/rust/tree/dev/tag_replace
repositoryhttps://github.com/i18n-site/rust.git
max_upload_size
id1786543
size25,052
i18n.site (i18nsite)

documentation

README

tag_replace

use unicode_segmentation::UnicodeSegmentation;

// 判断是否需要插入空格
pub fn word_push(pre: &mut String, txt: impl Into<String>) {
  let txt = txt.into();
  if let Some(last) = pre.chars().last()
    && let Some(first) = txt.chars().next()
  {
    let t = last.to_string() + &first.to_string();
    if !t.contains('_') {
      let mut t = t.split_word_bounds();
      if let (Some(_), None) = (t.next(), t.next()) {
        pre.push(' ')
      };
    }
  }
  pre.push_str(&txt);
}

pub struct TagReplace {
  pub start_tag: String,
  pub end_tag: String,
}

impl TagReplace {
  pub fn new(tag: impl AsRef<str>, attr: impl AsRef<str>) -> Self {
    let tag = tag.as_ref();
    let attr = attr.as_ref();
    Self {
      start_tag: format!("<{tag} {attr}=\""),
      end_tag: format!("</{tag}>"),
    }
  }

  /// replacer(前文, 原文, code_id)
  pub fn replace(
    &self,
    txt: impl AsRef<str>,
    replacer: impl Fn(&mut String, &str, &str),
  ) -> String {
    let mut result = String::new();
    let mut txt = txt.as_ref();

    let start_tag_len = self.start_tag.len();
    while let Some(start_tag) = txt.find(&self.start_tag) {
      word_push(&mut result, &txt[..start_tag]);

      let txt2 = &txt[start_tag..];
      if let Some(pos) = txt2[start_tag_len..].find("\">") {
        let end = start_tag_len + pos;
        let val = &txt2[start_tag_len..end];
        let begin = end + 2;
        if let Some(pos) = txt2[begin..].find(&self.end_tag) {
          let offset = begin + pos + self.end_tag.len();
          let org = &txt[start_tag..offset + start_tag];
          replacer(&mut result, org, val);
          txt = &txt2[offset..];
          continue;
        }
      }

      result.push_str(&txt[..start_tag_len]);
      txt = &txt[start_tag_len..];
    }

    result.push_str(txt);
    result
  }
}

About

This project is an open-source component of i18n.site ⋅ Internationalization Solution.

关于

本项目为 i18n.site ⋅ 国际化解决方案 的开源组件。

Commit count: 68

cargo fmt