Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
string.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12sealed class string
13{
18
19 static const string Empty;
21
22 private void string();
23 private void ~string();
24
29 proto external int ToAscii(int index = 0);
54 proto external float ToFloat(float default = 0.0, int offset = 0, out int parsed = -1);
80 proto external int ToInt(int default = 0, int offset = 0, out int parsed = -1);
92 proto external vector ToVector();
106 proto external string Substring(int start, int len);
119 proto external string Trim();
137 static proto string Format(string fmt, void param1 = NULL, void param2 = NULL, void param3 = NULL, void param4 = NULL, void param5 = NULL, void param6 = NULL, void param7 = NULL, void param8 = NULL, void param9 = NULL);
151 proto external int TrimInPlace();
163 proto external int Length();
168 proto external bool IsEmpty();
178 proto external int Hash();
194 proto external int IndexOf(string sample);
206 proto external int LastIndexOf(string sample);
223 proto external int IndexOfFrom(int start, string sample);
237 proto external bool Contains(string sample);
251 proto external bool ContainsAt(string sample, int pos);
263 proto external bool StartsWith(string sample);
277 proto external bool EndsWith(string sample);
293 proto external int Compare(string sample, bool caseSensitive = true);
311 proto external int Replace(string sample, string replace);
325 proto external int ToLower();
339 proto external int ToUpper();
365 proto external void Split(string delimiter, notnull out array<string> outTokens, bool removeEmptyEntries);
366 static proto string ToString(void var, bool type = false, bool name = false, bool quotes = true);
378 proto external string Get(int index);
385 proto external bool IsDigitAt(int index);
393 proto external bool IsSpaceAt(int index);
401 proto external typename ToType();
402}
403
EDamageType type
SCR_DestructionSynchronizationComponentClass ScriptComponentClass int index
SCR_VONRadialDisplay Compare
@ NULL
Unknown type.
Definition DataVarType.c:21
T4 param4
Definition tuple.c:152
T3 param3
Definition tuple.c:93
T2 param2
Definition tuple.c:92
Tuple param1
T5 param5
Definition tuple.c:153
proto external string ToString()
Plain C++ pointer, no weak pointers, no memory management.
proto native bool IsEmpty()