Strange Qt Code with strings

Viewed 1150

I found my friend's Qt code and he uses the modulo operator on two QStrings like this:

QString result = oneString % twoString;

What does it mean?

2 Answers
Related