Hey, I'm new to C++, and looking for a way to split a string like you do in C#.
using System;
class Program
{
static void Main()
{
string s = "@This@Is@My@String@";
string[] words = s.Split("@");
foreach (string word in words)
{
Console.WriteLine(word);
}
}
}
A GetBetween Function would work too. Is their anything like this in C++?