Surround a string with hashes

24

2

I've already made this in Python, but it seems that it could be shortened a lot:

txt = input("Type something.. ")
c = "#"
b = " "
print(c * (len(txt) + 4))
print(c, b * len(txt), c)
print(c, txt, c)
print(c, b * len(txt), c)
print(c * (len(txt) + 4))

So if the user types:

Hello World

The program prints:

###############
#             #
# Hello World #
#             #
###############


Fewest bytes wins—and of course, the answer can be written in any language.

Jacob_

Posted 2015-09-13T12:41:44.093

Reputation: 351

The same challenge as editor golf. – Martin Ender – 2015-09-13T12:44:29.627

@MartinBüttner Not exactly the same, different input format, this requires spacing all around the phrase. Also not language-restricted. – orlp – 2015-09-13T12:50:31.660

@orlp Well this task is a subset of this challenge.

– mınxomaτ – 2015-09-13T12:54:11.087

1

Not so different: http://codegolf.stackexchange.com/questions/57442/show-tree-rings-age/57470#57470

– edc65 – 2015-09-13T13:40:54.153

1The input string won't contain linebreaks, right? – flodel – 2015-09-13T13:51:23.480

2@edc65 I disagree, this challenge is hugely different – Beta Decay – 2015-09-13T13:55:40.757

@BetaDecay not a duplicate, just similar – edc65 – 2015-09-13T14:02:11.713

@edc65 Meh, debatable :) – Beta Decay – 2015-09-13T14:02:44.630

10I would recommend to wait at least a week before accepting an answer. While it doesn't really matter if you are planning to update the accepted answer if a shorter submission comes in, there will be people complaining about an early accepted answer, or even downvote it. There will also be some people who won't be interested in posting an answer if there is already an accepted one. – Martin Ender – 2015-09-13T17:36:16.793

What about strings like s̄trin̂gs with 8 code points but only 6 columns, or strings like wide‪ with 8 columns but only 4 code points? What about tabs? – tchrist – 2015-09-13T23:35:38.090

Answers

17

CJam, 22 20 bytes

qa{4/3*' +f+W%z}8/N*

Test it here.

Explanation

How do you wrap a 2D grid of characters in one layer of spaces (or any other character)? Correct: four times, you append a space to each line and then rotate the grid by 90 degrees. That's exactly what I'm doing here with eight rotations: four for spaces, four for #:

qa      e# Read the input and wrap it in an array, to make it a 2D grid.
{       e# Execute this block for each value from 0 to 7.
  4/3*  e#   Divide by 4, multiply by 3. Gives 0 for the first four iterations and
        e#   and 3 for the other four.
  ' +   e#   Add the result to a space character (space + 3 == #).
  f+    e#   Append this to each line of the grid.
  W%z   e#   Reverse the lines, then transpose the grid - together these rotate it.
}8/
N*      e# Join the lines of the grid by newlines.

Martin Ender

Posted 2015-09-13T12:41:44.093

Reputation: 184 808

1What a neat solution! – Joshpbarron – 2015-09-13T19:26:54.673

1I love the explanation :-D – John Dvorak – 2015-09-13T20:01:13.270

13

vim, 28 27 keystrokes

I# <esc>A #<esc>Y4PVr#G.kwv$3hr kk.

Assumes input is provided as a single line of text in the currently open file.

Explanation:

I# <esc>        put a "#" and space at the beginning of the line
A #<esc>        put a space and "#" at the end of the line
Y4P             copy the line 4 times
Vr#             replace the entirety of the first line with "#"s
G.              do the same for the last line
kwv$3hr<space>  replace middle of the fourth line with spaces
kk.             do the same for the second line

This can also be run as a "program" like so:

echo 'Hello World' | vim - '+exe "norm I# \<esc>A #\<esc>Y4PVr#G.kwv$3hr kk."'

Which is a bit convoluted, but it works.

Doorknob

Posted 2015-09-13T12:41:44.093

Reputation: 68 138

1This is the best answer, because it works like my mind does. – tchrist – 2015-09-14T00:44:11.280

12

pb - 89 bytes

v[4]w[Y!-1]{b[35]^}w[B!0]{t[B]vvv>>b[T]^^^<}v>>>w[Y!4]{b[35]v}w[X!0]{b[35]^[Y]b[35]v[4]<}

This is the kind of challenge pb was made for! Not that it's competitive for this kind of challenge or anything. It's still a horrible golf language. However, challenges like this are a lot less of a pain to solve in pb than others are. Since pb treats its output as a 2D canvas and is able to write to any coords, anything involving positioning text/drawing around text (i.e. this challenge) is handled rather intuitively.

Watch it run:

This visualization was created with an in-development version of pbi, the pb interpreter. The line with the blue background is Y=-1, where input is stored when the program starts. The rectangle with the red background is the current location of the brush. The rectangles with yellow backgrounds are anywhere the ascii character 32 (a space) is explicitly written to the canvas. Any blank spaces without this background actually have the value 0, which is converted to a space.

Here's the code with the comments I used while writing it, with some thematically relevant section headers ;)

################################
#                              #
# Handle first column oddities #
#                              #
################################
v[4]           # Start from Y=4 and go up (so we land on input afterwords)
w[Y!-1]{       # While we're on the visible part of the canvas
    b[35]^         # Write "#", then go up
}

#########################
#                       #
# Insert text of output #
#                       #
#########################

w[B!0]{        # For each character of input
    t[B]           # Save input char in T
    vvv>>          # Down 3 + right 2 = where text part of output goes
    b[T]^^^<       # Write T and go to next char
}

###############################
#                             #
# Handle last column oddities #
#                             #
###############################

v>>>           # Go to Y=0, X=(X of last text output's location + 2)
w[Y!4]{        # Until we reach the last line of output
    b[35]v         # Draw "#", then go down
}

###########################
#                         #
# Loop to finish Y=0, Y=4 #
#                         #
###########################

w[X!0]{        # Until we've gone all the way left
    b[35]^[Y]      # Print "#" at Y=4, go to Y=0
    b[35]v[4]      # Print "#" at Y=0, go to Y=4
    <              # Move left, printing until output is complete
}

undergroundmonorail

Posted 2015-09-13T12:41:44.093

Reputation: 5 897

3Not that it's competitive... It's still a horrible golf language. I say that, but right now I'm only tied for last. I was expecting to be last outright. :D – undergroundmonorail – 2015-09-13T16:48:16.980

9

brainfuck - 156 bytes

++++++++++>,[>>+++++[<+++++++>-],]<....[.---<<]>>+++>>+++.---.[.>>]<<.+++.[<]>.>>+++.---.<[.>>]<<<.>>.---[<]>.--->>+++.---[.>>]<<..+++.---[<]>[+++.>>]<<....

This is probably golfable. There's some places where I didn't know if it would be better to store a value somewhere for reuse or to remake it/go get it from elsewhere on the tape. Instead of doing the work to figure it out, I didn't do that. :D

With comments:

++++++++++>              Place a 10 (\n) at the beginning of the tape

,[>>+++++[<+++++++>-],]  Place a byte of input; place a 35 (#); repeat until end of input

<....                    Print the last cell (35; #) 4 times

[.---<<]                 Print every noninput cell on the tape in reverse (one # for each byte of input; then \n)
                         After printing each cell; decrease it by 32

>>+++                    Increase the 7 back up to 10

>>+++.---.               Increase a 32 (space) back up to 35 (#); print it; put it back to 32 and print again

[.>>]                    Print every 32 on the tape (one for each byte of input)

<<.+++.                  Print the last space again; increase it by 3 and print the resulting #

[<]>.                    Go to the beginning of the tape and print the \n

>>+++.---.               Increase a 32 (space) back up to 35 (#); print it; put it back to 32 and print again

<[.>>]                   Print every byte of input

<<<.>>.---               Print a space; then print a 35 (#} that was left behind earlier; Set it back to 32 after

[<]>.---                 Go to the beginning of the tape and print the \n; decrease by 3

>>+++.---                Set a space to #; print it; set it back to space

[.>>]                    Print all spaces

<<..+++.---              Print a space twice more; set it to #; print it again; set it back to space

[<]>                     Go to the "newline" (currently a 7 instead of 10)

[+++.>>]                 Increase by 3; print; do the same for all spaces (to set them to # before printing)

<<....                   Print the last # 4 more times

undergroundmonorail

Posted 2015-09-13T12:41:44.093

Reputation: 5 897

5

K, 21 bytes

4(|+"#",)/4(|+" ",)/,

Enlist the string, Add a space to all four sides of a string, then add an octothorpe to each side of the string. In action:

  4(|+"#",)/4(|+" ",)/,"Hello."
("##########"
 "#        #"
 "# Hello. #"
 "#        #"
 "##########")

Works in oK, Kona and k5.

There are quite a few variations within one character of length which remove the redundancy in the above, but none seem to break even when we only have to perform the "wrap" operation twice:

{x{|+x," #"y}/&4 4},:
{x{|+x,y}/,/4#'" #"},:
{x{|+x,y}/" #"@&4 4},:
{|+x,y}/[;" #"@&4 4],:

JohnE

Posted 2015-09-13T12:41:44.093

Reputation: 4 632

3

Python 3, 88 bytes

Thanks @WorldSEnder

s=" ";n=s+input()+s
b=len(n)
h="#";x=h*(b+2);y=h+s*b+h;z="\n"
print(x+z+y+z+h+n+h+z+y+z+x)

Example I/O:

This is a test
##################
#                #
# This is a test #
#                #
##################

Beta Decay

Posted 2015-09-13T12:41:44.093

Reputation: 21 478

s=" " at the beginning saves 1 byte overall I think. – WorldSEnder – 2015-09-13T18:53:13.300

Why using ; instead of new lines btw? Both should be one byte, right? – JeromeJ – 2015-09-13T21:56:04.300

3@JeromeJ I know it doesn't make a difference, but it looks shorter if you put it on one line ;) – Beta Decay – 2015-09-14T05:53:39.760

3

Pyth, 31 bytes

Js[K\#*d+2lzKb*K+4lz)_Jjd[KzK)J

Thanks to people in comments giving hints on how to golf further, I really don't know the language well as you can (probably) tell.

Blue

Posted 2015-09-13T12:41:44.093

Reputation: 26 661

2Couple of hints: "#" is equal to \#. If you have to concatenate a lot of objects you're better of using j""[ followed by a list of objects, which is equal to jk[. – orlp – 2015-09-13T13:24:45.790

1Some more hints. s[ is equal to jk[ for arrays of strings. Also, you can also assign K on the fly, like jk[K\#, and just drop the initial assign. Assigning lz to J doesn't help if only used twice, so save J for something else. Here, if you swap Z for J you can remove the =. Finally, you can assign J on the fly. The code then looks like this: _Js[K\#*d+2lzKb*K+4lz)jd[KzK)J – PurkkaKoodari – 2015-09-13T16:56:38.343

3

Perl, 43 76 bytes

Transform each text input line as specified:

s/.*/($x=("#"x(4+($z=length))))."\n".($y="#"." "x(2+$z)."#\n")."# $& #\n$y$x"/e

For example:

echo surround a long string with pounds | 
perl -ple's/.*/($x=("#"x(4+($z=length))))."\n".($y="#"." "x(2+$z)."#\n")."# $& #\n$y$x"/e' 
######################################
#                                    #
# surround a long string with pounds #
#                                    #
######################################

Here’s how to see what it’s really doing:

perl -MO=Deparse,-p,-q,-x9 -ple '($x=("#"x(4+($z=length))))."\n".($y="#"." "x(2+$z)."#\n")."# $& #\n$y$x";'
BEGIN { $/ = "\n"; $\ = "\n"; }
LINE: while (defined(($_ = <ARGV>))) {
    chomp($_);
    (((($x = ('#' x (4 + ($z = length($_))))) . "\n") . ($y = (('#' . (' ' x (2 + $z))) . "#\n"))) . (((('# ' . $&) . " #\n") . $y) . $x));
}
continue {
    (print($_) or die((('-p destination: ' . $!) . "\n")));
}
-e syntax OK

So something more like this:

((  
      (($x =  ('#' x (4 + ($z = length($_))))) . "\n")
    .  ($y = (('#' . (' ' x (2 + $z))) . "#\n"))
  )  
    .  (((('# ' . $&) . " #\n") . $y) . $x)
)   

tchrist

Posted 2015-09-13T12:41:44.093

Reputation: 308

There should be a row of white space padding before and after the string. Take a look at the example output from the question.... but nice to see you submitting... especially in Perl :D – rayryeng - Reinstate Monica – 2015-09-13T23:52:15.597

@rayryeng It made me sad that nobody was submitting in Perl. – tchrist – 2015-09-13T23:55:34.567

To be honest I was surprised. This certainly seems like a problem suited for it :). – rayryeng - Reinstate Monica – 2015-09-13T23:56:18.153

@rayryeng Fixed in the next release. :) – tchrist – 2015-09-14T00:31:51.423

You already had my vote :D BTW, I hope this isn't shameless, but your book is awesome. I use it for reference, but I still can't use it (and Perl) as eloquently as I'd like. – rayryeng - Reinstate Monica – 2015-09-14T00:35:25.660

@rayryeng The Deparse trick is useful for figuring out precedence and implicits. – tchrist – 2015-09-14T00:38:05.283

You can save some bytes by replacing length with y///c, swapping " " for $", and using multiple statements instead of all those parens: s/.*/$x="#"x(4+($z=y!!!c));$y="#".$"x(2+$z)."#\n";"$x\n$y# $& #\n$y$x"/e, which comes to 74 bytes (72 + 2 for -lp). (It's no longer necessary in this version, but in general you can use .$/. instead of ."\n". to save 2 bytes.) – ThisSuitIsBlackNot – 2015-09-15T07:23:54.050

1Actually, now that I think about it, if you split everything into separate statements, you can simply move them outside the substitution and drop the e modifier...but if you do that, you might as well just drop the substitution altogether: $x="#"x(4+($z=y!!!c));$y="#".$"x(2+$z)."#\n";$_="$x\n$y# $_ #\n$y$x". Use actual newlines instead of \n and it's only 65 bytes, plus 2 for -lp. – ThisSuitIsBlackNot – 2015-09-16T18:26:12.007

2

JavaScript (ES6), 73

Heavily using template string, the 2 newlines are significant and counted.

Test running the snippet below in any EcmaScript 6 compliant browser (FireFox and latest Chrome, maybe Safari).

f=s=>(z=c=>`*${c[0].repeat(s.length+2)}*
`)`*`+z` `+`* ${s} *
`+z` `+z`*`

// Less golfed

U=s=>(
  z=c=>'*' + c.repeat(s.length+2) + '*\n',
  z('*') + z(' ') + '* ' + s + ' *\n' + z(' ') + z('*')
)

// TEST

O.innerHTML=f('Hello world!')
<pre id=O></pre>

This is quite shorter than my first try, derived from this other challenge:

f=s=>(q=(c,b,z=c.repeat(b[0].length))=>[z,...b,z].map(r=>c+r+c))('*',q(' ',[s])).join`\n`

edc65

Posted 2015-09-13T12:41:44.093

Reputation: 31 086

Doesn't run for me (Canary). – mınxomaτ – 2015-09-13T15:05:27.117

@minxomat what is Canary? – edc65 – 2015-09-13T15:10:22.507

It works in Chrome 45.0.2454.85 m, Windows 7 – edc65 – 2015-09-13T15:12:40.610

Canary is always the latest Chrome build. Doesn't work in my Chrome Stable either. Edit: Works in FireFox though.

– mınxomaτ – 2015-09-13T15:15:38.277

(Is it legal to assign to the global z as a side-effect?) – Neil – 2015-09-13T20:53:11.460

@Neil yes. The goal is shortest code, not best practices – edc65 – 2015-09-13T22:10:33.000

Gosh, something crazy happened.. This (cutting edge ;p) code worked in that peasant like browser called IE :p – DividedByZero – 2015-09-14T18:26:46.837

@RandomUser wow! IE what? on my MSIE (11.0.9600.18015 auto update on) it does not work at all – edc65 – 2015-09-14T19:14:04.273

Well, It's technically Microsoft Edge, but it's based heavily on IE 11.. – DividedByZero – 2015-09-17T17:50:37.067

@RandomUser Well, it's technically another JS engine, or else this script would work on IE11 as well. A good news anyway – edc65 – 2015-09-17T21:23:50.707

2

Python 2, 74

s='# %s #'%input()
n=len(s)
b='\n#'+' '*(n-2)+'#\n'
print'#'*n+b+s+b+'#'*n

Takes input in quotes like "Hello World".

  • The third line is the input encased in # _ #.
  • The second and fourth lines b are # # with the right number of spaces, surrounded with newlines to either side to take care of all four newlines.
  • The first and fifth lines are # multiplied to the length of the input

The lines are concatenated and printed.

xnor

Posted 2015-09-13T12:41:44.093

Reputation: 115 687

2

PHP, 95 93 bytes

Not exactly brilliant or anything similar, but it was actually fun!

$l=strlen($s=" $argv[1] ");printf("#%'#{$l}s#
#%1\${$l}s#
#$s#
#%1\${$l}s#
#%1\$'#{$l}s#",'');

Not exactly pretty or anything, but it works brilliantly!


Thanks to @Titus for saving 2 bytes.

Ismael Miguel

Posted 2015-09-13T12:41:44.093

Reputation: 6 797

You can save two bytes by using $argv instead of $_GET and -r. – Titus – 2016-10-08T14:38:46.907

2

MATLAB, 93 91 bytes

Not the prettiest, but it gets the job done.

t=[32 input('','s') 32];m='#####'.';n=repmat('# ',numel(t),1)';disp([m [n;t;flipud(n)] m])

Code Explanation

Step #1

t=[32 input('','s') 32];

Read in a string from STDIN and place a leading and trailing single space inside it. 32 is the ASCII code for a space and reading in the input as a string type coalesces the 32s into spaces.

Step #2

m='#####'.';

Declare a character array of 5 hash signs in a column vector.

Step #3

n=repmat('# ',numel(t),1)'

Create a 2 row character matrix that is filled by hash signs first followed by white space after. The number of characters is the length of the input string plus 2 so that we can accommodate for the space before and after the string.

Step #4

disp([m [n;t;flipud(n)] m])

We're going to piece everything together. We place the first column of 5 hashes, followed by the centre portion and followed by another column of 5 hashes. The centre portion consists of the 2 row character matrix created in Step #3, the input string itself which has a trailing and leading space, followed by the 2 row character matrix but reversed.

Example Runs

>> t=[32 input('','s') 32];m='#####'.';n=repmat('# ',numel(t),1)';disp([m [n;t;flipud(n)] m])
This is something special for you
#####################################
#                                   #
# This is something special for you #
#                                   #
#####################################
>> t=[32 input('','s') 32];m='#####'.';n=repmat('# ',numel(t),1)';disp([m [n;t;flipud(n)] m])
Hello World
###############
#             #
# Hello World #
#             #
###############
>> t=[32 input('','s') 32];m='#####'.';n=repmat('# ',numel(t),1)';disp([m [n;t;flipud(n)] m])
I <3 Code Golf StackExchange!
#################################
#                               #
# I <3 Code Golf StackExchange! #
#                               #
#################################

rayryeng - Reinstate Monica

Posted 2015-09-13T12:41:44.093

Reputation: 1 521

2

Perl 5.14+, 57 56 bytes

perl -lpe '$_=join"#
#",($_=" $_ ",y// /cr,"#".y//#/cr)[2,1,0..2]'

54 bytes + 2 bytes for -lp (if input doesn't end in a newline, -l can be dropped to save one byte).

Accepts input on STDIN:

$ echo Hello World | perl -lpe '$_=join"#
#",($_=" $_ ",y// /cr,"#".y//#/cr)[2,1,0..2]'
###############
#             #
# Hello World #
#             #
###############

How it works

The core of the program is a list slice:

($_=" $_ ",y// /cr,"#".y//#/cr)[2,1,0..2]'

This provides a compact way to store the three unique rows of the output (the first two rows of the bounding box are the same as the last two, only mirrored). For the input string foo, the results of the slice would be:

index   value
--------------
  2    "######"
  1    "     "
  0    " foo "
  1    "     "
  2    "######"

Joining these values with #\n# gives us our box.

Note that Perl 5.14+ is required to use the non-destructive r modifier to the transliteration operator y///.

ThisSuitIsBlackNot

Posted 2015-09-13T12:41:44.093

Reputation: 1 050

1

><>, 106 104 Bytes

I get the feeling that ><> may not be the best language for this, but I've come too far to give up and not post this. The * at the end of line 4 is supposed to be a space. Don't you love how incredibly grotesque this code looks? Try it online.

<v?(0:i
v>~" ## "}}l:::
>"#"o1-:?!v02.>~a"#"oo
"-2ooa"#"~<.31v!?:-1o" 
7v?=3loroo"#"a<.4
.>";^"e3pa2p093

Here's a version without anything but direction changers to give an idea of how the pointer moves (note that I've left out the "teleport" statements, i.e. .).

Direction flow:

<v
v>
>         v   >
          <   v 
 v            <
 >           

Explanation

My visualization of the stack will be based off of the input input. ><> is a two dimensional language, so pay attention to where the pointer is moving between lines, as it executes code underneath it (in this code <>v^ are primarily used to change direction). I'll be starting my explanations from where the pointer starts. Note that there will be two lines repeated, as the pointer moves backwards after the fifth line.

What I always find cool about ><> is its ability to modify its own source code, and I make use of it in this program. Lines 3 and 4 are reused to print the last two lines through a modification of a character in each.

Line 1 : Input loop

<v?(0:i
<        change direction to left
   (0:i  checks if input is less than 0 (no input defaults to -1)
 v?      change direction to down if so

Stack: [-1,t,u,p,n,i]


Line 2: Generates third line of output

v>~" ## "}}l:::  
 >~" ## "}}      remove -1 (default input value) from stack and pads with # and spaces
           l:::  push 4 lengths of padded input

Stack: [9,9,9,9,#, ,t,u,p,n,i, ,#]


Line 3: Prints first line of output

>"#"o1-:?!v02.>~a"#"oo
>"#"o                   print "#"
     1-                 subtract 1 from length (it's at the top of the stack)
       :?!v             move down if top of stack is 0

Stack: [0,9,9,9,#, ,t,u,p,n,i, ,#]

Output:

#########

Line 4: Prints second line of output

"-2ooa"#"~<.31v!?:-1o"*
 -2ooa"#"~<              pops 0, prints newline, "#", then decrements length by 2
"                   o"*  prints space (* is supposed to be space char)
                  -1     decrements top of stack
           .31v!?:       changes direction to down if top of stack is 0, else jumps back to "

Stack: [0,9,9,#, ,t,u,p,n,i, ,#]

Output (* represents space):

#########
#*******

Line 5: Prints third line of output

7v?=3loroo"#"a<.4
        oo"#"a<    prints "#",newline
       r           reverses stack
7v?=3lo        .4  outputs until stack has 3 values, then changes direction to down

Stack: [9,9,0]

Output:

#########
#       #
# input #

Line 6: Sets itself up to print fourth and fifth lines of output

.>";^"e3pa2p093
 >";^"           push ";",then "^"
      e3p        place "^" as the fifteenth character on line 4
         a2p     place ";" as the eleventh character on line 3
            0    push a value (value doesn't matter -- it will be deleted)
.            93  jump to the tenth character on line 4

Stack: [0,9,9,0]


Line 4: Print fourth line of output

"-2ooa"#"~<.31^!?:-1o"*
   ooa"#"~<              delete 0 (unnecessary value pushed), then print newline,"#"
 -2                      subtract two from value on top of stack (length)
"          .31^!?:-1o"*  print space until top of stack is 0, then change direction to up

Stack: [0,9,0]

Output (* represents space):

#########
#       #
# input #
#*******

Line 3: Print last line of output

"#"o1-:?!;02.>~a"#"oo
             >~a"#"oo  pop top of stack, print "#", newline
"#"o1-:?!;02.          print "#" until top of stack is 0, then terminate

Stack: [0,0]

Output:

#########
#       #
# input #
#       #
#########

cole

Posted 2015-09-13T12:41:44.093

Reputation: 3 526

1

C++, 198 Bytes

#include <iostream>
#include <string>
int i;int main(){std::string t,n,o;std::getline(std::cin,o);t="\n#";o="# "+o+" #";for(;i<o.size();i++){n+="#";if(i>1)t+=" ";}t+="#\n";std::cout<<n+t+o+t+n;}

My first stab at codegolf, and while I learned C++ is probably not the best language for golfing, I felt I did decently(?) for my first try.

Ungolfed

#include <iostream>
#include <string>

int i;                              //globals default to a value of 0

int main()
{
    std::string t, n, o;
    std::getline(std::cin, o);

    t = "\n#";                      // t needs hashes at start and end, places hash at start here
    o = "# " + o + " #";            // put hash at each end of input

    for(; i < o.size(); i++) {
        n += "#";                   // fills n with hashes
        if(i > 1) {
            t += " ";               // fill t with spaces between hashes, has two fewer spaces than n has hashes
        }
    }
    t += "#\n";                     // puts final hash at end of t

    std::cout << n + t + o + t + n; // final output
}

n, o and t represent the fully hashed lines, the input (with hashes at each end) and the lines between the input and the hashed lines respectively.

Cyv

Posted 2015-09-13T12:41:44.093

Reputation: 211

1

PHP, 93 91 bytes

$b=str_pad("",$e=strlen($s=" $argv[1] "));echo$h=str_pad("",2+$e,"#"),"
#$b#
#$s#
#$b#
$h";

Takes input from command line argument; escape spaces or use single quotes. Run with -r.

Titus

Posted 2015-09-13T12:41:44.093

Reputation: 13 814

1

Pyke (noncompetitive), 6 bytes

.X".X#

Try it here!

Pyke was written after the challenge and is therefore noncompetitive.

.X"    - surround string in spaces
   .X# - surround string in hashes

.X takes a string and a string constant arg and surrounds a string with that group of characters. The constant arg can be up to 8 characters and have different effects on how the string is surrounded.

Blue

Posted 2015-09-13T12:41:44.093

Reputation: 26 661

1

05AB1E, 26 bytes, Not competing

g4+'#ש,¹' .ø'#.ø,®,

Try it online!

EDIT: Woah! Didn't notice that this is an old challange! Sorry!

Luke

Posted 2015-09-13T12:41:44.093

Reputation: 81

1

C# - 142 bytes (method body is 104)

class P{static void Main(string[]a){for(int i=0;++i<6;)System.Console.Write("#{0}#\n",i==3?$" {a[0]} ":new string(" #"[i%2],a[0].Length+2));}}

Ungolfed:

class P
{
    static void Main(string[] a)
    {
        for (int i = 0; ++i < 6;)
            System.Console.Write("#{0}#\n", i == 3 ? $" {a[0]} " : new string(" #"[i%2], a[0].Length + 2));
    }
}

Ozziereturnz

Posted 2015-09-13T12:41:44.093

Reputation: 111

0

SmileBASIC, 73 bytes

LINPUT S$L=LEN(S$)+2O$="#"+" "*L+"#
T$="#"*(L+2)?T$?O$?"# ";S$;" #
?O$?T$

12Me21

Posted 2015-09-13T12:41:44.093

Reputation: 6 110

0

C (gcc) 165 bytes

f(*s){i,j;c='#';for(j=0;j<5;j++){if(j==0||j==4){for(i=0;i<strlen(s)+2;i++)printf("#");}else if(j==2) printf("#%s#",s);else printf("#%*c",(strlen(s)+1),c);puts("");

Ungolfed version

void  f(char *s)
{
    int i,j;
    char c='#';

    for(j=0;j<5;j++)
    { 
       if(j==0||j==4)
       { 
         for(i=0;i<strlen(s)+2;i++)
           printf("#");
       }
       else
        if(j==2)
         printf("#%s#",s);
      else
        printf("#%*c",(int)(strlen(s)+1),c);

   puts("");
}

Abel Tom

Posted 2015-09-13T12:41:44.093

Reputation: 1 150

0

PowerShell, 84 82 bytes

$l=$input.length+4;$p='#'*$l;$s=' '*$l;$p,$s,"  $input  ",$s,$p-replace'^ | $','#'

briantist

Posted 2015-09-13T12:41:44.093

Reputation: 3 110

0

Lua, 90 bytes

a=arg[1]h="#"s=" "t="\n"..h c=h:rep(#a+4)..t..s:rep(#a+2)..h..t..s print(c..a..c:reverse())

Trebuchette

Posted 2015-09-13T12:41:44.093

Reputation: 1 692

0

Ruby, 83 bytes

I guess it could be golfed further, but since there's no Ruby answer yet, here it is:

s=ARGV[0]
n=s.size
r="#"*(n+4)
t="\n#"+" "*(n+2)+"#\n"
puts r+t+"\n# "+s+" #\n"+t+r

jmm

Posted 2015-09-13T12:41:44.093

Reputation: 241

0

C#, 116 110 bytes

s=>{string r="\n".PadLeft(s.Length+5,'#'),p="#".PadRight(s.Length+3,' ')+"#\n";return r+p+"# "+s+" #\n"+p+r;};

Ungolfed:

s=>
{
    string r = "\n".PadLeft(s.Length + 5, '#'),         //the first line, made of '#'s
        p = "#".PadRight(s.Length + 3, ' ') + "#\n";    //the second line
    return r + p + "# " + s + " #\n" + p + r;           //output is simmetrical
};

Initial version:

s=>{int l=s.Length;string r=new string('#',l+4)+"\n",p="#"+new string(' ',l+2)+"#\n";return r+p+"# "+s+" #\n"+p+r;};

Full program with test cases:

using System;

namespace SurroundStringWithHashes
{
    class Program
    {
        static void Main(string[] args)
        {
            Func<string,string>f= s=>{int l=s.Length;string r=new string('#',l+4)+"\n",p="#"+new string(' ',l+2)+"#\n";return r+p+"# "+s+" #\n"+p+r;};

            Console.WriteLine(f("Hello World"));
            Console.WriteLine(f("Programming Puzzles & Code Golf"));
        }
    }
}

adrianmp

Posted 2015-09-13T12:41:44.093

Reputation: 1 592

Use var instead of string. – Yytsi – 2016-10-08T22:58:50.777

Won't help in this case, since I have 2 strings and each var keyword allows only one declaration. – adrianmp – 2016-10-08T23:02:08.050

Oops, didn't see the second one :D – Yytsi – 2016-10-09T08:07:18.277

0

Racket 172 bytes

(λ(s)(let((n(string-length s))(p #\space)(g(λ(l c)(make-string l c))))(display(string-append
(g(+ 4 n)#\#)"\n#"(g(+ 2 n)p)"#\n# "s" #\n#"(g(+ 2 n)p)"#\n"(g(+ 4 n)#\#)))))

Ungolfed:

(define (f s)
  (let ((n (string-length s))
        (p #\space)
        (g (λ (l c) (make-string l c))))
    (display (string-append (g (+ 4 n) #\#)
                            "\n#"
                            (g (+ 2 n) p)
                            "#\n# "
                            s
                            " #\n#"
                            (g (+ 2 n) p)
                            "#\n"
                            (g (+ 4 n) #\#)
                            ))))

Testing:

(f "This is a test" )

Output:

##################
#                #
# This is a test #
#                #
##################

rnso

Posted 2015-09-13T12:41:44.093

Reputation: 1 635