IUserAccessiablestringReplace Method |
Replace string inFind contained inside string inString, with the string inReplace
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax string stringReplace(
string inString,
string inFind,
string inReplace
)
Parameters
- inString
- Type: SystemString
string to replace content in - inFind
- Type: SystemString
string inside inString, to remove and replace - inReplace
- Type: SystemString
string to replace and insert to inString instead of inFind
Return Value
Type:
StringinString, containing inReplace instead of inFind
Remarks If inFind isn't contained in inString, inString remains doesn't change
Examples
stringReplace("Replace me please", "me p", "AAA") will return this string: "Replace AAAlease".
See Also