This method performs a search for the specified term.
| Parameter | Description | 
|---|---|
| token | search term to find | 
Returns the first position in the string where the search term is found, or -1 if it is not found.
#include "Leadwerks.h"
using namespace Leadwerks;
int main(int argc, const char* argv[])
{
    String s = "Hello, how are you today?";
    Print(s.Find("today"));
    return 0;
}