Syncfusion DocIO Заменить текст полем слияния
У меня есть целая пачка документов, в которых есть простой текстовый маркер, например ~{fieldToBeReplaced}, и я хочу заменить его полем слияния.
У меня есть следующий код, который вставляет поле слияния, а затем вставляет текст << MERGEFIELD_NAME >>.
Я хочу, чтобы это было поле слияния с отображаемым именем, как если бы я вставил-> Объединить поле в слове.
//linqPad Script
void Main()
{
Console.WriteLine("::::: Replacing BookMarks ::::: ");
//Search And Replace bookmarks
try
{
var replaceDir = new DirectoryInfo(saveFileLocation);
var bookmarkFiles = replaceDir.GetFiles().ToList();
foreach (var bkmFile in bookmarkFiles)
{
if (SearchReplaceBookmarks(bkmFile.FullName))
{
Console.WriteLine("Bookmarks Replace:" + bkmFile.Name + " ::: ");
}
}
}
catch (Exception ex)
{
Console.WriteLine("ERROR: ::: " + ex.Message);
}
}
static string startDir = Path.GetDirectoryName(Util.CurrentQueryPath);
string saveFileLocation = startDir + @"\Converted\";
private List<fieldReplace> fieldList = new List<fieldReplace>() {
//new fieldReplace("",""),
new fieldReplace("~{U-nm}","_Doctor"),
new fieldReplace("~{P-nl}","_Patient_Surname","Patient_Firstname"),
new fieldReplace("~{DOBN}","_Patient_DOB"),
new fieldReplace("~{U-ph","_Doctor_PhoneWork"),//Surgeon Business
new fieldReplace("~{U-pm}","_Doctor_PhoneMobile")//Surgeon After Hours
}
// Define other methods and classes here
private bool SearchReplaceBookmarks(string filename)
{
try
{
WordDocument wordDocument = new WordDocument(filename);
//Adds one section and one paragraph to the document
foreach (var fld in fieldList)
{
var replaceBookmark = wordDocument.Find(fld.TextToReplace, false, true);
//if the bookmark is in the list then
while (replaceBookmark != null)
{
//Find and replace text with merge field.
var paragraph = new WParagraph(wordDocument);
for (int i =0 ; i<= fld.FieldNames.Length-1;i++){
var field = paragraph.AppendField(fld.FieldNames[i], FieldType.FieldMergeField);
field.FieldType = FieldType.FieldMergeField;
if (i < fld.FieldNames.Length - 1) { paragraph.AppendText(", ");}
}
var selection = new TextSelection(paragraph, 0, paragraph.Text.Length);
wordDocument.Replace(fld.TextToReplace, selection, true, true); //This is where the Merge Field is meant to be inserted
replaceBookmark = wordDocument.FindNext(paragraph, fld.TextToReplace, false, true);
}
}
//Debug.Write( wordDocument.MailMerge.MappedFields);
wordDocument.Save(filename, FormatType.Docx);
wordDocument.Close();
return true;
}
catch (Exception ex)
{
Console.WriteLine("ERROR:" + filename + " ::: " + ex.Message);
return false;
}
}
private class fieldReplace
{
public fieldReplace(string oldText, params string[] newNewFieldName)
{
this.TextToReplace = oldText;
this.FieldNames = newNewFieldName;
}
public string TextToReplace { get; set; }
public string[] FieldNames { get; set; }
}
1 ответ
Анализируя упомянутый вами сценарий, 1) Поиск заполнителя из документа Word. 2) Замена текста заполнителя полями слияния и полями, которые должны быть заменены как таковые в документе MS Word.
Да, используя DocIO, заполнитель текста может быть заменен полями слияния как эквивалент MS Word. Мы изменили ваш код в соответствии с вашими требованиями. Мы использовали перегрузку TextBodyPart метода Replace(). Пожалуйста, найдите приведенный ниже фрагмент кода.
Измененный фрагмент кода TextBodyPart bodyPart = new TextBodyPart(wordDocument); bodyPart.BodyItems.Add(пункт); wordDocument.Replace(fld.TextToReplace, bodyPart, true, true);
По дополнительным вопросам обращайтесь в нашу службу поддержки по адресу support@syncfusion.com, чтобы получить оперативную помощь по этому вопросу.