Hello Programmers, In this post, you will know how to solve the ‘Sed’ command #3 HackerRank Solution. This problem is a part of the HackerRank Linux Shell Series.‘Sed’ command #3 HackerRank SolutionOne more thing to add, don’t directly look for the solutions, first try to solve the problems of Hackerrank by yourself. If you find any difficulty after trying several times, then you can look for solutions.‘Sed’ command #3 HackerRank SolutionObjectiveSed is a popular utility which enables quick parsing and transformation of text.Here are some very simple examples of sed in action.Substitute the first occurrence of ‘editor’ with ‘tool’.$:~/hackerrank/bash/grep/grep1$ echo “My favorite programming editor is Emacs. Another editor I like is Vim.” | sed -e s/editor/tool/My favorite programming tool is Emacs. Another editor I like is Vim.Substitute all the occurrences of ‘editor’ with ‘tool’.$:~/hackerrank/bash/grep/grep1$ echo “My favorite programming editor is Emacs. Another editor I like is Vim.” | sed -e s/editor/tool/gMy favorite programming tool is Emacs. Another tool I like is Vim.Substitute the second occurrence of ‘editor’ with ‘tool’.$:~/hackerrank/bash/grep/grep1$ echo “My favorite programming editor is Emacs. Another editor I like is Vim.” | sed -e s/editor/tool/2My favorite programming editor is Emacs. Another tool I like is Vim.Highlight all the occurrences of ‘editor’ by wrapping them up in brace brackets.$:~/hackerrank/bash/grep/grep1$ echo “My favorite programming editor is Emacs. Another editor I like is Vim.” | sed -e s/editor/{&}/gMy favorite programming {editor} is Emacs. Another {editor} I like is Vim.Some references for learning about sed have been included:TaskGiven an input file, in each line, highlight all the occurrences of ‘thy’ by wrapping them up in brace brackets. The search should be case-insensitive.Input FormatA text file will be piped to your command via STDIN.Output FormatHighlight all occurrences of ‘thy’ as shown in the example below.Sample InputFrom fairest creatures we desire increase,That thereby beauty’s rose might never die,But as the riper should by time decease,His tender heir might bear his memory:But thou contracted to thine own bright eyes,Feed’st thy light’s flame with self-substantial fuel,Making a famine where abundance lies,Thy self thy foe, to thy sweet self too cruel:Thou that art now the world’s fresh ornament,And only herald to the gaudy spring,Within thine own bud buriest thy content,And tender churl mak’st waste in niggarding:Pity the world, or else this glutton be,To eat the world’s due, by the grave and thee.When forty winters shall besiege thy brow,And dig deep trenches in thy beauty’s field,Thy youth’s proud livery so gazed on now,Will be a tattered weed of small worth held:Then being asked, where all thy beauty lies,Where all the treasure of thy lusty days;To say within thine own deep sunken eyes,Were an all-eating shame, and thriftless praise.How much more praise deserved thy beauty’s use,If thou couldst answer ‘This fair child of mineShall sum my count, and make my old excuse’Sample OutputFrom fairest creatures we desire increase,That thereby beauty’s rose might never die,But as the riper should by time decease,His tender heir might bear his memory:But thou contracted to thine own bright eyes,Feed’st {thy} light’s flame with self-substantial fuel,Making a famine where abundance lies,{Thy} self {thy} foe, to {thy} sweet self too cruel:Thou that art now the world’s fresh ornament,And only herald to the gaudy spring,Within thine own bud buriest {thy} content,And tender churl mak’st waste in niggarding:Pity the world, or else this glutton be,To eat the world’s due, by the grave and thee.When forty winters shall besiege {thy} brow,And dig deep trenches in {thy} beauty’s field,{Thy} youth’s proud livery so gazed on now,Will be a tattered weed of small worth held:Then being asked, where all {thy} beauty lies,Where all the treasure of {thy} lusty days;To say within thine own deep sunken eyes,Were an all-eating shame, and thriftless praise.How much more praise deserved {thy} beauty’s use,If thou couldst answer ‘This fair child of mineShall sum my count, and make my old excuse’ExplanationAll occurrences of ‘thy’ have been highlighted by wrapping them up in brace brackets {}. The search and replacement has been done regardless of case.‘Sed’ command #3 HackerRank Solutionsed -e 's/thy/{&}/gI'Note: This problem (‘Sed’ command #3) is generated by HackerRank but the Solution is Provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.Next: ‘Sed’ command #4 HackerRank Solution Post navigation‘Sed’ command #2 HackerRank Solution ‘Sed’ command #4 HackerRank Solution