Hi all,
is there any possibility to implement a simple search_reaplace functionality in a macro.
E.g. I want to replace all '::' sequences by a '/' to convert a full qualified classname to a filepath for inclusion.
\startuml
!definelong provide_interface(comp, interface)
!include search_replace(interface, '::', '/')##.plantuml
comp ..|> interface
!enddefinelong
component example
provide_interface(example, example::Example_interface)
\enduml
where the file example/Example_interface.plantuml contains the plantuml fragment for the interface.
Thank you in advance. Plantuml is a great tool.