Path name to id: Difference between revisions
Jump to navigation
Jump to search
imported>Fredg1 No edit summary |
imported>Fredg1 No edit summary |
||
Line 12: | Line 12: | ||
return_also={{#var:return_also}}| | return_also={{#var:return_also}}| | ||
parameter1={{Param|string|name}}| | parameter1={{Param|string|name}}| | ||
p1desc={{Pspan|name}} is the | p1desc={{Pspan|name}} is the full, exact, case-sensitive name of the path to convert.| | ||
}}| | }}| | ||
Line 40: | Line 40: | ||
see_also={{SeeAlso|my_path|my_path_id|path_id_to_name}}| | see_also={{SeeAlso|my_path|my_path_id|path_id_to_name}}| | ||
special= | special=Returns -1 if given an incorrect/unknown name. Also, "Unrestricted" and "Aftercore" are not valid inputs for 0. "None" is instead expected.| | ||
}} | }} | ||
[[Category:Datatype Conversions]] | [[Category:Datatype Conversions]] |
Revision as of 00:48, 8 June 2020
Function Syntax
int path_name_to_id(string name )
- name is the full, exact, case-sensitive name of the path to convert.
Returns the specified path name as its path number.
Code Samples
Following example shows basic path_name_to_id operations.
string first = "Bees Hate You";
string second = "G-Lover";
string third = "Live. Ascend. Repeat.";
print(first+" gives "+path_name_to_id(first)+".");
print(second+" gives "+path_name_to_id(second)+".");
print(third+" gives "+path_name_to_id(third)+".");
Gives the following output.
Bees Hate You gives 4. G-Lover gives 33. Live. Ascend. Repeat. gives 31.
See Also
Special
Returns -1 if given an incorrect/unknown name. Also, "Unrestricted" and "Aftercore" are not valid inputs for 0. "None" is instead expected.