I need to search text in LibreOffice Writer using known criteria, find text excerpts and replace them with active URL links that contain found text. If found excerpt already is a link it should be skipped.
Example:
If I find TA0GED in text I have to replace it with active link in a manner that TA0GED is still displayed but converted to active link that leads to http://mysite.org/TA0GED.
I made regular expression that finds text excerpts as I need them.
T[EP][:digit:]+[:alpha:]{1,4}
It successfully finds everything. My problem is I have no idea what to do next. I manged to replace it with another string that contains found string but I cannot find proper way to convert it to a clickable link.
Internet search showed nothing on this topic.
Is that possible?