diff --git a/alib2std/src/extensions/string.cpp b/alib2std/src/extensions/string.cpp
index 42937a380029f56716201619d6e4f07f3905166b..5fc301800f2a2d2ab99f320efe8e99cbdb95a06e 100644
--- a/alib2std/src/extensions/string.cpp
+++ b/alib2std/src/extensions/string.cpp
@@ -101,4 +101,20 @@ std::string cstringToString ( char * param ) {
 	return res;
 }
 
+ext::vector < std::string > explode ( std::string source, std::string delimiter ) {
+	std::string part;
+	ext::vector < std::string > res;
+	size_t start_pos = 0;
+	size_t end_pos;
+
+	while ( ( end_pos = source.find ( delimiter, start_pos ) ) != std::string::npos ) {
+		res.push_back ( source.substr ( start_pos, end_pos - start_pos ) );
+		start_pos = end_pos + delimiter.size ( );
+	}
+
+	res.push_back ( source.substr ( start_pos, source.size ( ) ) );
+
+	return res;
+}
+
 } /* namespace ext */
diff --git a/alib2std/src/extensions/string.hpp b/alib2std/src/extensions/string.hpp
index 0b836db787c830a846222e199e20d0ad6d96f276..51c2f5f97247e9b9a297321f3fae83a3e7f4ee00 100644
--- a/alib2std/src/extensions/string.hpp
+++ b/alib2std/src/extensions/string.hpp
@@ -11,6 +11,7 @@
 #include <string>
 #include <stdexcept>
 #include "compare.hpp"
+#include "vector.hpp"
 
 namespace ext {
 
@@ -112,6 +113,8 @@ struct compare < std::string > {
 
 };
 
+ext::vector < std::string > explode ( std::string source, std::string delimiter );
+
 } /* namespace ext */
 
 #endif /* __STRING_HPP_ */
diff --git a/alib2std/test-src/extensions/StringTest.cpp b/alib2std/test-src/extensions/StringTest.cpp
index ab517dae21504bdc7281a9ae5c8de1ba4c45f389..0b7889f321e31945a55214dc47f97f9322a19e13 100644
--- a/alib2std/test-src/extensions/StringTest.cpp
+++ b/alib2std/test-src/extensions/StringTest.cpp
@@ -18,3 +18,51 @@ void StringTest::testToString() {
 	CPPUNIT_ASSERT ( ext::to_string ( a ) == "" );
 }
 
+void StringTest::testExplode ( ) {
+	{
+		std::string one ( "a::bb::ccc" );
+		ext::vector < std::string > oneExploded = ext::explode ( one, "::" );
+
+		std::cout << oneExploded << std::endl;
+
+		CPPUNIT_ASSERT ( oneExploded.size ( ) == 3 );
+		CPPUNIT_ASSERT ( oneExploded [ 0 ] == "a" );
+		CPPUNIT_ASSERT ( oneExploded [ 1 ] == "bb" );
+		CPPUNIT_ASSERT ( oneExploded [ 2 ] == "ccc" );
+	}
+	{
+		std::string one ( "a::bb::ccc::" );
+		ext::vector < std::string > oneExploded = ext::explode ( one, "::" );
+
+		CPPUNIT_ASSERT ( oneExploded.size ( ) == 4 );
+		CPPUNIT_ASSERT ( oneExploded [ 0 ] == "a" );
+		CPPUNIT_ASSERT ( oneExploded [ 1 ] == "bb" );
+		CPPUNIT_ASSERT ( oneExploded [ 2 ] == "ccc" );
+		CPPUNIT_ASSERT ( oneExploded [ 3 ] == "" );
+	}
+	{
+		std::string one ( "" );
+		ext::vector < std::string > oneExploded = ext::explode ( one, "::" );
+
+		CPPUNIT_ASSERT ( oneExploded.size ( ) == 1 );
+		CPPUNIT_ASSERT ( oneExploded [ 0 ] == "" );
+	}
+	{
+		std::string one ( "::aa" );
+		ext::vector < std::string > oneExploded = ext::explode ( one, "::" );
+
+		std::cout << oneExploded << std::endl;
+
+		CPPUNIT_ASSERT ( oneExploded.size ( ) == 2 );
+		CPPUNIT_ASSERT ( oneExploded [ 0 ] == "" );
+		CPPUNIT_ASSERT ( oneExploded [ 1 ] == "aa" );
+	}
+	{
+		std::string one ( "::" );
+		ext::vector < std::string > oneExploded = ext::explode ( one, "::" );
+
+		CPPUNIT_ASSERT ( oneExploded.size ( ) == 2 );
+		CPPUNIT_ASSERT ( oneExploded [ 0 ] == "" );
+		CPPUNIT_ASSERT ( oneExploded [ 1 ] == "" );
+	}
+}
diff --git a/alib2std/test-src/extensions/StringTest.h b/alib2std/test-src/extensions/StringTest.h
index 75be89adb104f24e24578860f8c901a9aeff1565..28c4c94ed39bdf68fe307996c24e5e24d7571215 100644
--- a/alib2std/test-src/extensions/StringTest.h
+++ b/alib2std/test-src/extensions/StringTest.h
@@ -3,24 +3,25 @@
 
 #include <cppunit/extensions/HelperMacros.h>
 
-class StringTest : public CppUnit::TestFixture
-{
-  CPPUNIT_TEST_SUITE( StringTest );
-  CPPUNIT_TEST( testToString );
-  CPPUNIT_TEST_SUITE_END();
+class StringTest : public CppUnit::TestFixture {
+	CPPUNIT_TEST_SUITE( StringTest );
+	CPPUNIT_TEST( testToString );
+	CPPUNIT_TEST( testExplode );
+	CPPUNIT_TEST_SUITE_END();
 
-  class A {
-  public:
-    explicit operator std::string ( ) const {
-      return "";
-    }
-  };
+	class A {
+	public:
+		explicit operator std::string ( ) const {
+			return "";
+		}
+	};
 
 public:
-  void setUp();
-  void tearDown();
+	void setUp ( );
+	void tearDown ( );
 
-  void testToString();
+	void testToString ( );
+	void testExplode ( );
 };
 
-#endif  // STRING_TEST_H_
+#endif /* STRING_TEST_H_ */