https://emily.shillest.net/ayaya/index.php?マニュアル/関数用途別一覧
Function name | Quick explanation |
Manual/Function/TOINT | Convert strings and real numbers to integers |
Manual/Function/TOREAL | Convert strings and integers to real numbers |
Manual/Function/TOSTR | Convert integers, real numbers, and general arrays to strings |
Manual/Function/GETTYPE | Get the value type |
Manual/Function/GETTYPEEX | Get the value type |
Manual/Function/ISFUNC | Check whether a function with a given name exists |
Manual/Function/ISVAR | Checks whether a variable with a given name exists |
Manual/Function/CVINT | Convert a variable's type to integer |
Manual/Function/CVSTR | Convert a variable's type to string |
Manual/Function/CVREAL | Convert a variable's type to real number |
Manual/Function/CVAUTO | Convert a string variable to an integer or real number |
Manual/Function/CVAUTOEX | Convert a string variable to an integer or real number (only if the result of additional string conversion matches the original string) |
Manual/Function/TOAUTO | Convert a string or integer to a real number |
Manual/Function/TOAUTOEX | Convert a string or integer to a real number (only if the result of additional string conversion matches the original string) |
Function name | Quick explanation |
Manual/Function/ARRAYSIZE | Get the number of array elements |
Manual/Function/SETDELIM | Set the delimiter (simple array delimiter) for the variable |
Manual/Function/IARRAY | Returns an empty general array |
Manual/Function/ASEARCH | Retrieves a single value from a general array |
Manual/Function/ASEARCHEX | Retrieves all occurences of a value from a general array |
Manual/Function/GETDELIM | Get the delimiter (simple array delimiter) of a variable |
Manual/Function/ASORT | Sort data in a general array |
Manual/Function/ARRAYDEDUP | Eliminate duplicate elements in an array |
Function name | Quick explanation |
Manual/Function/STRSTR | Search for the position of a substring within a string |
Manual/Function/STRLEN | Get the number of characters within a string |
Manual/Function/REPLACE | Replace a substring within a string with another substring |
Manual/Function/SUBSTR | Extract a specified number of characters starting from a specified position within a string |
Manual/Function/ERASE | Delete a specified number of characters starting from a specified position within a string |
Manual/Function/INSERT | Insert a substring at the specified position within the string |
Manual/Function/TOUPPER | Convert all lowercase letters in a string to uppercase |
Manual/Function/TOLOWER | Convert all uppercase letters in a string to lowercase |
Manual/Function/CUTSPACE | Remove whitespace at the left and right end of a string |
Manual/Function/TOBINSTR | Convert an integer (decimal) to a binary numeric string |
Manual/Function/TOHEXSTR | Convert an integer (decimal) to a hexadecimal numeric string |
Manual/Function/BINSTRTOI | Convert a binary number string to an integer (decimal) |
Manual/Function/HEXSTRTOI | Convert a hexadecimal number string to an integer (decimal) |
Manual/Function/CHR | Convert UCS-2 codes to characters |
Manual/Function/CHRCODE | Convert characters to UCS-2 codes |
Manual/Function/ISINTSTR | Determine if a given string can be interpreted as an integer |
Manual/Function/ISREALSTR | Determine if a given string can be interpreted as a real number |
Manual/Function/SPLITPATH | Break down a path string into a general array with an element for each part |
Manual/Function/STRFORM | Get a formatted string |
Manual/Function/ANY | Get one element at random |
Manual/Function/GETSTRBYTES | Get the number of bytes in a string |
Manual/Function/SPLIT | Split a string with the specified delimiter |
Manual/Function/ZEN2HAN | Convert full-width characters in a string to half-width characters |
Manual/Function/HAN2ZEN | Convert half-width characters in a string to full-width characters |
Manual/Function/STRENCODE | Encode a string |
Manual/Function/STRDECODE | Decode a string |
Manual/Function/STRDIGEST | Get the digest (hash) value of a string |
Manual/Function/TRANSLATE | Perform fast character-to-character replacement of strings |
Function name | Quick explanation |
Manual/Function/RE_SEARCH | Check if there is a regular expression pattern match in the string |
Manual/Function/RE_MATCH | Check if the entire string matches the regular expression exactly |
Manual/Function/RE_GREP | Search for all parts of a string that match a regular expression pattern |
Manual/Function/RE_REPLACE | Replace all parts of a string that match a regular expression |
Manual/Function/RE_SPLIT | Split a string with a regular expression pattern and get it in a general array |
Manual/Function/RE_GETSTR | Get a general array listing substrings that match the regular expression pattern |
Manual/Function/RE_GETPOS | Get a general array listing the locations of substrings matching the regular expression pattern |
Manual/Function/RE_GETLEN | Get a general array listing the lengths of substrings matching the regular expression pattern |
Manual/Function/RE_REPLACEEX | Replace all parts of the target string that match the regular expression pattern |
Manual/Function/RE_ASEARCH | Get a single value from a general array that contains the specified regular expression pattern |
Manual/Function/RE_ASEARCHEX | Get all values from a general array that contain the specified regular expression pattern |
Manual/Function/RE_OPTION | Set regular expression options |
Function name | Quick explanation |
Manual/Function/FUNCTIONEX | Execute SAORI |
Manual/Function/LOADLIB | Load an external library (DLL) |
Manual/Function/UNLOADLIB | Unload an external library (DLL) |
Manual/Function/REQUESTLIB | Run a loaded external library |
Manual/Function/CHARSETLIB | Specify the character code to use when communicating with external libraries |
Manual/Function/CHARSETLIBEX | Individually specify character codes to use when communicating with external libraries |
Function name | Quick explanation |
Manual/Function/RAND | Get a random number (integer type) |
Manual/Function/SRAND | Set the seed for random numbers |
Manual/Function/FLOOR | Round down the decimal point of a real number |
Manual/Function/CEIL | Round up the decimal point of a real number |
Manual/Function/ROUND | Round the decimal point of a real number to the closest whole number |
Manual/Function/SIN | Function that returns the sine |
Manual/Function/COS | Function that returns the cosine |
Manual/Function/TAN | Function that returns the tangent |
Manual/Function/LOG | Function that returns the natural logarithm |
Manual/Function/LOG10 | Function that returns the common logarithm |
Manual/Function/POW | Power function |
Manual/Function/SQRT | Function that returns the square root |
Manual/Function/ASIN | Function that returns the arcsine in radians |
Manual/Function/ACOS | Function that returns the arccosine in radians |
Manual/Function/ATAN | Function that returns the arctangent in radians |
Manual/Function/SINH | Function that returns the hyperbolic sine |
Manual/Function/COSH | Function that returns the hyperbolic cosine |
Manual/Function/TANH | Function that returns the hyperbolic tangent |
Function name | Quick explanation |
Manual/Function/BITWISE_AND | Function that returns the bitwise AND of 2 arguments |
Manual/Function/BITWISE_OR | Function that returns the bitwise OR (logical sum) of 2 arguments |
Manual/Function/BITWISE_XOR | Function that returns the bitwise XOR (exclusive OR) of two arguments |
Manual/Function/BITWISE_NOT | Function that returns NOT (bit reversal) of the argument |
Manual/Function/BITWISE_SHIFT | Function that performs a bit shift operation |
Function name | Quick explanation |
Manual/Function/FOPEN | Open a file |
Manual/Function/FCLOSE | Close a file |
Manual/Function/FREAD | Read one line from a file |
Manual/Function/FREADENCODE | Read data while encoding |
Manual/Function/FWRITEDECODE | Write data while decoding |
Manual/Function/FWRITE | Write one line in a file (newline at the end of the line) |
Manual/Function/FWRITE2 | Write one line in a file (do not end with a newline) |
Manual/Function/FCOPY | Copy a file |
Manual/Function/FMOVE | Move a file |
Manual/Function/MKDIR | Create a directory |
Manual/Function/RMDIR | Delete a directory |
Manual/Function/FDEL | Delete a file |
Manual/Function/FRENAME | Rename a file |
Manual/Function/FSIZE | Get the size of a file |
Manual/Function/FENUM | Get a list of files and directories |
Manual/Function/FCHARSET | Specify the character code used to read and write files |
Manual/Function/FATTRIB | Get various information on files and directories |
Manual/Function/FREADBIN | Read data without character code conversion |
Manual/Function/FWRITEBIN | Write data without character code conversion |
Manual/Function/FDIGEST | Get the hash value of a specified file |
Manual/Function/FSEEK | Specify the read/write position in the file |
Manual/Function/FTELL | Get the read/write position in the file |
Function name | Quick explanation |
Manual/Function/EVAL | Execute the given string as a single YAYA script (expression) |
Manual/Function/ISEVALUABLE | Determine if EVAL can be performed |
Manual/Function/ERASEVAR | Erase a variable |
Manual/Function/LETTONAME | Assign variables |
Manual/Function/LSO | Get the result of the last selection made |
Manual/Function/SAVEVAR | Save variables to a file |
Manual/Function/GETSETTING | Get settings for YAYA itself |
Manual/Function/GETFUNCLIST | Get a list of functions in the currently loaded dictionaries |
Manual/Function/GETVARLIST | Get a list of variables in use |
Manual/Function/CHARSETTEXTTOID | Convert a string representing a character code to a character code ID |
Manual/Function/CHARSETIDTOTEXT | Convert a character code ID to a string representing a character code |
Manual/Function/RESTOREVAR | Load variables from a file |
Manual/Function/GETCALLSTACK | Get the history of user function calls in a general array |
Manual/Function/EXECUTE | Start an external program |
Manual/Function/EXECUTE_WAIT | Start an external program and wait for it to finish |
Manual/Function/SETSETTING | Change settings for YAYA itself |
Manual/Function/LICENSE | Get the YAYA license string |
Manual/Function/APPEND_RUNTIME_DIC | Write the contents of a dictionary to the dictionary in memory |
Manual/Function/GETSYSTEMFUNCLIST | Get a list of system functions |
Manual/Function/OUTPUTNUM | Get the number of output candidates that the function can return |
Manual/Function/DICLOAD | Dynamically load a dictionary file |
Manual/Function/DICUNLOAD | Dynamically unload a dictionary file |
Manual/Function/FUNCDECL_ERASE | Specify a function that is automatically executed when a variable is deleted |
Manual/Function/FUNCDECL_READ | Specify a function that is automatically executed when a variable is read |
Manual/Function/FUNCDECL_WRITE | Specify a function that is automatically executed when a variable is written |
Manual/Function/GETFUNCINFO | Get information on (user) functions in the dictionary |
Manual/Function/UNDEFFUNC | Unload a function |
Manual/Function/ISGLOBALDEFINE | Check to see if it is defined with #globaldefine |
Manual/Function/PROCESSGLOBALDEFINE | Perform the sameprocess as #globaldefine |
Manual/Function/SETGLOBALDEFINE | Write a #globaldefine in the dictionary in memory |
Manual/Function/UNDEFGLOBALDEFINE | Disable a #globaldefine |
Function name | Quick explanation |
Manual/Function/GETTIME | Get current date and time information |
Manual/Function/GETTICKCOUNT | Get the time elapsed since the OS was booted |
Manual/Function/GETMEMINFO | Get memory information about the operating environment |
Manual/Function/GETSECCOUNT | Get the number of seconds elapsed since EPOCH (1970/1/1 00:00:00 in Universal Standard Time) |
Manual/Function/READFMO | Get the contents of the FMO as a string |
Manual/Function/GETENV | Get environment variables |
Function name | Quick explanation |
Manual/Function/LOGGING | Write the specified value to the log file The log is displayed in the debugger "Tama" at the same time |
Manual/Function/GETLASTERROR | Get the error code of the system function that occured immediately before |
Manual/Function/SETLASTERROR | Set error codes for system functions |
Manual/Function/DUMPVAR | Dump variables to a log |
Manual/Function/CLEARERRORLOG | Clear error/warning logs |
Manual/Function/GETERRORLOG | Get error/warning logs |
Manual/Function/LINT.GetFuncUsedBy | Get the name of the functions used in the specified function |
Manual/Function/LINT.GetGlobalVarLetted | Get the name of the global variables defined (assigned) by the specified function |
Manual/Function/LINT.GetGlobalVarUsedBy | Get the name of the global variables used in the specified function |
Manual/Function/LINT.GetLocalVarLetted | Get the name of the local variables defined (assigned) by the specified function |
Manual/Function/LINT.GetLocalVarUsedBy | Get the names of the local variables used in the specified function |
Manual/Function/LINT.GetUserDefFuncUsedBy | Get the name of the user-defined functions used in the specified function |
Manual/Function/SLEEP | Suspends execution and waits for the specified time (unit: milliseconds) |
Manual/Function/SETTAMAHWND | Specify the window handle of the debugging tool "Tama" |
Last modified on: 2024-01-22 (Monday) 19:53:46
|