i want to add comma to separate the numbers after clicking enter key
the current output like: 98998997899
but my desired output should be : 9899,899,7899
How can i acheive this....
Discussion posts and replies are publicly visible
a!localVariables( local!text, local!numbers, a!paragraphField( label: "test", value: local!text, saveInto:{ local!text, a!save( local!numbers, a!localVariables( local!data:local!text, tointeger(split(local!data,char(10))) ) ) } ) )
Sri Ram Kaja Thankyou so much its working fine