Changing external links to internal links?

i have a list of external links, formatted as

[Example Text](Link.com)

that I want to convert to internal links, formatted as

[[Example Text]]

is there a way to do this that’s quicker than doing it manually? I’ve got a lot of links to reformat. the link address (link.com in the example) doesn’t need to be saved

Obsidian works with plain text files. This gives the enormous advantage that the information can be edited by any tool. Text editors allow for search and replace. They support wildcards or regular expressions, and thus patterns like [*](*) can easily be replaced by [[*]]. If unsure, editors allow to confirm each replacement.

You can use this plugin Text Format

Links
Command Description
Remove WikiLinks format in selection e.g. Convert [[WikiLinks]] to WikiLinks (#28)
Remove URL links format in selection e.g. Convert [Google](www.google.com) to Google
Convert URL links to WikiLinks in selection e.g. Convert [Google](www.google.com) to [[Google]]
Convert WikiLinks to plain markdown links in selection :gear: e.g. Convert [[Google]] to [Google](Google.md) (#40)

I have a weird question though… Suppose I am in Home.md, is there a way to click [[Google]] will navigate to www.google.com but not Google.md. However, inside the Google.md, you can see a reference of Home.md binding the connection between Home.md and Google.md