// 在当前集合中每个元素的DOM位置 下级开头 插入新元素 // 参见 MarcQuery::prepend() 函数的注释 // 最后返回当前集合 /// <summary> /// 在当前集合的每个元素的 DOM 位置的下级开头插入根据指定的源字符串构造的新元素 /// </summary> /// <param name="strSourceText">源字符串</param> /// <returns>当前集合</returns> public MarcNodeList prepend(string strSourceText) { if (this.count == 0 || string.IsNullOrEmpty(strSourceText)) { return(this); } if (this[0].NodeType == NodeType.None) { throw new ArgumentException("不允许在 None 节点的 下级开头 添加任何节点"); } if (this[0].NodeType == NodeType.Subfield) { throw new ArgumentException("不允许在 子字段 节点的 下级开头 添加任何节点。因为子字段本身就是末级节点,不允许出现下级节点"); } MarcNodeList source_nodes = null; string strLeading = ""; if (this[0].NodeType == NodeType.Record) { source_nodes = MarcQuery.createFields(strSourceText); } else if (this[0].NodeType == NodeType.Field) { source_nodes = MarcQuery.createSubfields(strSourceText, out strLeading); // leading要追加到目标集合的最后一个元素的Content末尾 if (string.IsNullOrEmpty(strLeading) == false) { this.last()[0].Content += strLeading; } } else { throw new Exception("未知的对象类型 '" + this[0].NodeType.ToString() + "'"); } MarcQuery.prepend(source_nodes, this); return(this); }
void setContent(string strValue) { // 拆分为字段 this.ChildNodes.clearAndDetach(); this.m_strContent = ""; if (String.IsNullOrEmpty(strValue) == true) { return; } // 整理尾部字符 char tail = strValue[strValue.Length - 1]; if (tail == 29) { strValue = strValue.Substring(0, strValue.Length - 1); if (String.IsNullOrEmpty(strValue) == true) { return; } } this.Header[0, Math.Min(strValue.Length, 24)] = strValue; if (strValue.Length <= 24) { // 只有头标区,没有任何字段 return; } this.ChildNodes.add(MarcQuery.createFields( // this, strValue.Substring(24), this.OuterFieldDef)); }
// 在当前集合中每个元素的DOM位置后面插入新元素 // 参见 MarcQuery::insertAfter() 函数的注释 // 最后返回当前集合 /// <summary> /// 在当前集合中每个元素的 DOM 位置后面插入新元素,新元素由指定的源字符串构造 /// </summary> /// <param name="strSourceText">源字符串</param> /// <returns>当前集合</returns> public MarcNodeList after(string strSourceText) { if (this.count == 0 || string.IsNullOrEmpty(strSourceText)) { return(this); } if (this[0].NodeType == NodeType.None) { throw new ArgumentException("不允许在 None 对象的后面添加任何对象"); } if (this[0].NodeType == NodeType.Record) { throw new ArgumentException("不允许在 记录 对象的后面添加任何对象"); } MarcNodeList source_nodes = null; string strLeading = ""; if (this[0].NodeType == NodeType.Field) { source_nodes = MarcQuery.createFields(strSourceText); } else { source_nodes = MarcQuery.createSubfields(strSourceText, out strLeading); // leading要追加到目标集合的最后一个元素的Content末尾 if (string.IsNullOrEmpty(strLeading) == false) { this.last()[0].Content += strLeading; } } MarcQuery.insertAfter(source_nodes, this); return(this); }