Difference between revisions of "Category:Functions"

From Soldat Community Wiki
Jump to: navigation, search
Line 1: Line 1:
 +
* procedure [[ScriptCore3.WriteLn|WriteLn]](Text: string)
 +
* function [[ScriptCore3.StrToInt|StrToInt]](Text: String): Integer
 +
* function [[ScriptCore3.iif|iif]](Condition: Boolean; IfTrue, IfFalse: Variant): Variant
 +
* function [[ScriptCore3.Random|Random]](Min, Max: Integer): Integer
 +
* function [[ScriptCore3.RGB|RGB]](R, G, B: Byte): LongWord
 +
* function [[ScriptCore3.ExecRegExpr|ExecRegExpr]](const ARegExpr, AInputStr: string): boolean
 +
* procedure [[ScriptCore3.SplitRegExpr|SplitRegExpr]](const ARegExpr, AInputStr: string; APieces: TStrings)
 +
* function [[ScriptCore3.ReplaceRegExpr|ReplaceRegExpr]](const ARegExpr, AInputStr, AReplaceStr: string; AUseSubstitution: boolean): string
 +
* function[[ScriptCore3.QuoteRegExprMetaChars|QuoteRegExprMetaChars]](const AStr: string): string
 +
* function [[ScriptCore3.RegExprSubExpressions|RegExprSubExpressions]](const ARegExpr: string; ASubExprs : TStrings; AExtendedSyntax: boolean): integer
 +
 
[[Category:ScriptCore 3]]
 
[[Category:ScriptCore 3]]

Revision as of 08:08, 30 July 2013

  • procedure WriteLn(Text: string)
  • function StrToInt(Text: String): Integer
  • function iif(Condition: Boolean; IfTrue, IfFalse: Variant): Variant
  • function Random(Min, Max: Integer): Integer
  • function RGB(R, G, B: Byte): LongWord
  • function ExecRegExpr(const ARegExpr, AInputStr: string): boolean
  • procedure SplitRegExpr(const ARegExpr, AInputStr: string; APieces: TStrings)
  • function ReplaceRegExpr(const ARegExpr, AInputStr, AReplaceStr: string; AUseSubstitution: boolean): string
  • functionQuoteRegExprMetaChars(const AStr: string): string
  • function RegExprSubExpressions(const ARegExpr: string; ASubExprs : TStrings; AExtendedSyntax: boolean): integer