StringToIntArray

int[] StringToIntArray(string inString)

Description

Will turn a string in a specific format, to an Integer array.

Parameters

The following is a list of parameters the functions receives 

Parameter Type Description
inString string Array name


Return Type

int[]

Examples

Given the following string: '1,3,5,7'.
StringToIntArray('1,3,5,7'); will return an array holding the following integers: {1,3,5,7}

Was this article helpful?
0 out of 0 found this helpful
Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.