Nexus.Client.ModManagement.Scripting.ModScript.ModScriptInterpreterContext.RemoveString C# (CSharp) Method

RemoveString() public method

Removes the specified substring from the given value, and stores it in the specified variable.
public RemoveString ( string p_strVariableName, string p_strValue, string p_strStart ) : void
p_strVariableName string The name of the variable in which to store the substring.
p_strValue string The value from which to remove the substring.
p_strStart string The inclusive start position of the substring.
return void
		public void RemoveString(string p_strVariableName, string p_strValue, string p_strStart)
		{
			Variables[p_strVariableName] = FunctionProxy.RemoveString(p_strValue, p_strStart);
		}

Same methods

ModScriptInterpreterContext::RemoveString ( string p_strVariableName, string p_strValue, string p_strStart, string p_strLength ) : void