Anyone have some quick way to completely remove an entry in a list including the delimiter?
For example:
list = "1,2,3,4,5,6,7"
I would like to remove 5 and the comma after it giving me the following result
list = "1,2,3,4,6,7"
The list is a list of userid's that have access to a particular program and basically I would like to remove a specific user from having access to a program.
For example:
list = "1,2,3,4,5,6,7"
I would like to remove 5 and the comma after it giving me the following result
list = "1,2,3,4,6,7"
The list is a list of userid's that have access to a particular program and basically I would like to remove a specific user from having access to a program.