Im trying to figure how to do this, which is written in C#, in objective C....
public static string Mid(string param,int startIndex)
{
//start at the specified index and return all characters after it
//and assign it to a variable
string result = param.Substring(startIndex);
//return the result of the operation
return result;
}
thanks in advance
basically i want to get all characters after a specified character.
public static string Mid(string param,int startIndex)
{
//start at the specified index and return all characters after it
//and assign it to a variable
string result = param.Substring(startIndex);
//return the result of the operation
return result;
}
thanks in advance
basically i want to get all characters after a specified character.