vote up 1 vote down star

I am writing a mad libs program for fun and to just program something. The program itself is pretty straight forward, but I find myself resorting to several concatenations due to the nature of the game where you place user given words into a sentence. Is there an elegant work around to resort to less concatenations or even eliminate them for something more efficient? I know in the end it will make no difference if I use concatenations or not, but I am curious if there is a more elegant way to write this program.

Update: I am using java, but if there is a general solution to escaping concatenation that would be appreciated too.

flag

70% accept rate
Just curious why you're wanting to avoid concatenations – Andy White Mar 16 at 7:05
Ok, i'm just gonna say this even though this is not the proper place, yer avatar is awesome! – TJB Mar 16 at 7:08
I'm only avoiding concatenations out of curiosity myself I know the program will work fine with them. Also thx TJB. – Anton Mar 16 at 7:12

9 Answers

vote up 7 vote down check

One solution might be to write out your whole mad libs file and put in special tokens that need to be replaced by the words that are chosen.

You just bought a brand new ${NOUN1}, and it is going to ${VERB1} you.

Then you can use for example: String.replace("${NOUN1}", noun1) for all the words.

link|flag
Just a note, I think using named tokens might be easier to maintain than using the normal String.format tokens like %s, %d – Andy White Mar 16 at 6:59
1  
Won't tokens also result in the same number of concatenations? – Anton Mar 16 at 7:01
Yeah, it's still going to concatenate behind the scenes. I'm not sure there's really a clean way to avoid that without getting down to string allocation/manipulations. But maybe that's what you're wanting to mess with! Sorry – Andy White Mar 16 at 7:03
+1 for resulting in more readable code than a StringBuilder/Buffer – basszero Mar 16 at 16:13
vote up 1 vote down

Rather than calling String.replace for each word or constantly appending to a StringBuilder, you could put the words in an ordered array and use String.format ( in jdk 1.5 or newer ) or MessageFormat.format in jdk 1.4. Unfortunately the pattern formats for the two are different.

String myPattern = "My %s eats your %s";
// get values from the user here
String result = String.format( myPattern, (Object[])myArray );

or

String myPattern = "My {0} eats your {1}";
// get values from the user here
String result = MessageFormat.format( myPattern, (Object[])myArray );

Here is a complete program that fills in the string with values from the command line.

public class Format
{
    public static void main( String[] args )
    {
        String pattern = "My %s eats your %s";
        System.out.println( String.format( pattern, (Object[])args ));
    }
}
link|flag
vote up 1 vote down

There are two ways I can see you entirely avoiding concatenation in your game:

  1. Store the story template as as a collection of tokens: immutable parts and word placeholders. Then loop through the collection outputting immutable parts and user words instead of word placeholders.

  2. Write custom print class that will loop through the template string using charAt and output words instead of word placeholders.

link|flag
vote up 0 vote down

The solution I came up with after seeing everyone else's response is that in general the concatenations cannot be avoided without knowing the size of the final string. So after I receive the replacement words from the user then determine the final size of the string I will create a StringBuilder of that size. This will allow me to append all the other strings without Java internally recreating the StringBuilder. In addition this avoids making unnecessary strings that Java normally creates since Java's append actually creates a string buffer and new string for each "+" operator.

PS. Thank you mmyers for letting me know that StringBuilder is slightly faster than StringBuffer.

PSS. I noticed I got too nitpicky about optimization because it was fun and that my solution most definitely does not answer my original question mostly because its not elegant.

link|flag
StringBuilder is usually a little faster than StringBuffer, if you're looking for speed. – mmyers Mar 16 at 16:09
pre-mature optimization city! Token replacement seems cleaner – basszero Mar 16 at 16:15
Yeah I didn't really go for cleanness since that seemed simpler to me than "pre-mature optimization". This was more a learning goal to find out the "best way" to do it in java. Also thank you mmyers for the StringBuffer advice. – Anton Mar 16 at 20:02
Just remember that what you really want is what LOOKS the cleanest. If using + looks better than StringBuffer, to not use + is bad programming unless using it over SB actually makes your program pass some benchmark it couldn't pass otherwise. – Bill K Mar 16 at 20:10
@Anton: What Bill K said. I personally use + until it starts looking like a problem; If you're not doing it in a loop, it really doesn't make enough difference either way to worry about it. I hope I didn't throw you off track by mentioning that something runs a little faster than something else. – mmyers Mar 16 at 20:16
vote up 1 vote down

Not sure about Java but in some other languages such as PHP and Javascript creating an array and joining all of its elements can be faster.

Javascript example:

var str = str1 + str2 + str3 + "str4" + str5 + "str6" + str7;
var str = [str1, str2, str3, "str4", str5, "str6", str7].join("");

PHP example:

$str = $str1 . $str2 . $str3 . "str4" . $str5 . "str6" . $str7;
$str = implode("", array($str1, $str2, $str3, "str4", $str5, "str6", $str7));

This method is best if you want to put a delimiter between each string in which case it will not only be faster but more compact and readable.

link|flag
vote up 2 vote down

Nothing comes to my mind in terms of a general way to avoid concatenation. What you could do is to write yourself some kind of helper class which simplifies the job of concatenation for you. A suggestion I would like to give you however is to not directly concatenate strings as

String x = "Hi";
String y = x + " there!";

The implementation of string concatenation is quite slow in Java, so it's a better practice to use StringBuffer instead, especially if you do a lot of concatenations:

StringBuffer myStringBuffer = new StringBuffer();
myStringBuffer.append("Hi");
myStringBuffer.append(" there!");

Something like this. I didn't check this now in a compiler, but I'm sure you can figure it out yourself.

link|flag
vote up 0 vote down

By 'avoiding concatenation' I assume you mean allocating the space for the new string and assigning it? If you're on .NET then a StringBuilder should help some I think.

link|flag
vote up 1 vote down

There're two aspects of your question.

First, you might wish to avoid using concatenations directly in your code. Then you can use some string-formatting routine from the runtime. This won't skip concatenations, but will move them from your code to the runtime.

Second, you may want to do concatenations more efficently. That's another story. The most important thing here is to preallocate the big enough buffer for the concatenated string, since memory reallocations are quite expensive. Copying substrings into the result strings are usually less expensive and are a necessary evil.

link|flag
Allocating a big enough buffer for madlibs seems impossible since the user can supply a word of any size. – Anton Mar 16 at 7:04
Well, that might happen too, but you can have some guess of what the length limit is with say 97 % probability. This will make your inplementation very efficient for most cases and reasonably efficient for all other cases. – sharptooth Mar 16 at 7:13
vote up 2 vote down

Which language are you using?

Most high level langauges will have something similar to:

String.Format("{0} {1} {2} {3}", word1, word2, word3, word4);
link|flag
As you might guess this will just hide the concatenation, not avoid them. – sharptooth Mar 16 at 6:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.