Class TextExecutableLibrary
Executable function library for texts
public class TextExecutableLibrary : ExecutableFunctionLibrary
- Inheritance
-
objectTextExecutableLibrary
- Inherited Members
-
object.Equals(object)object.Equals(object, object)object.GetHashCode()object.GetType()object.MemberwiseClone()object.ReferenceEquals(object, object)object.ToString()
Methods
Flow_StringConcat(string[])
public static string Flow_StringConcat(string[] values)
Parameters
valuesstring[]
Returns
- string
Flow_StringFormat(string, object[])
public static string Flow_StringFormat(string separator, object[] arguments)
Parameters
separatorstringargumentsobject[]
Returns
- string
Flow_StringFormatOneArgument(string, object)
Format string with one argument {0}.
public static string Flow_StringFormatOneArgument(string separator, object argument)
Parameters
separatorstringargumentobject
Returns
- string
Flow_StringFormatThreeArguments(string, object, object, object)
Format string with three arguments {0}, {1}, {2}.
public static string Flow_StringFormatThreeArguments(string separator, object argument0, object argument1, object argument2)
Parameters
separatorstringargument0objectargument1objectargument2object
Returns
- string
Flow_StringFormatTwoArguments(string, object, object)
Format string with two arguments {0}, {1}.
public static string Flow_StringFormatTwoArguments(string separator, object argument0, object argument1)
Parameters
separatorstringargument0objectargument1object
Returns
- string
Flow_StringHash64(string)
public static ulong Flow_StringHash64(string stringValue)
Parameters
stringValuestring
Returns
- ulong
Flow_StringJoin(string, string[])
public static string Flow_StringJoin(string separator, string[] values)
Parameters
separatorstringvaluesstring[]
Returns
- string
Flow_StringReplace(string, string, string)
public static string Flow_StringReplace(string stringValue, string oldValue, string newValue)
Parameters
stringValuestringoldValuestringnewValuestring
Returns
- string
Flow_StringToLower(string)
public static string Flow_StringToLower(string stringValue)
Parameters
stringValuestring
Returns
- string
Flow_StringToUpper(string)
public static string Flow_StringToUpper(string stringValue)
Parameters
stringValuestring
Returns
- string