Coder Social home page Coder Social logo

Comments (2)

zimmermanw84 avatar zimmermanw84 commented on May 17, 2024

@arunln This is a 2 year old comment so I assume this problem is far in your rear view, so I am commenting for anyone else who may find this useful.

I found a workaround to inserting Hyperlinks into a document where an arbitrary text string is located. Obviously there's performance implications to this, but it works in the interim until the maintainers add this functionality.

// create a hyperlink
Hyperlink linkedTitle = document.AddHyperlink(content, new Uri(href));
// FindAll returns a List of starting indexes where your string was found
List<int> textMatchIndexes = document.FindAll(stringToMatch, RegexOptions.IgnoreCase);
// hack to insert (insert a paragraph because you can insert at an index)
foreach (int index in textMatchIndexes)
{
  // insert p at index
   var p = document.InsertParagraph(index, "", false);
   // add hyper link to it
   p.AppendHyperlink(linkedTitle).Color(Color.Blue).UnderlineStyle(UnderlineStyle.singleLine);
} 
// replace placeholder text with empty string
document.ReplaceText(stringToMatch, "", false, RegexOptions.IgnoreCase);

Obviously not the most straight forward approach.

from docx.

XceedBoucherS avatar XceedBoucherS commented on May 17, 2024

Hi,
in the next release, v1.6, a new method will be available to replace a string by an hyperlink :
ReplaceTextWithObject( string searchValue, DocumentElement objectToAdd )
Thank you.

from docx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.