[Tex/LaTex] Line of dots in a Section with Text at the end

formattingsections-paragraphs

I'm having a section in which i need to append dotted line till the line end. At the end i need some text.

Exactly like the below

Healthcare
Management……………………………………………………………………….
ORACLE
Healthcare
Management……………………………………………………………………….
MICROSOFT

Researched on this topic. Couldn't find any solution

Any help.??

Best Answer

Provided a loose usage of the word exactly :

\documentclass[a4paper]{article}
    \begin{document}
        Healthcare Management \dotfill ORACLE \\
        Healthcare Management \dotfill MICROSOFT
    \end{document}

enter image description here

should do the trick.

For the white space at the end of MICROSOFT I suppose you could use \hspace{10cm}.

Related Question