How do I use Regex to remove "Sensor_" from a data set? this is example set, ["Sensor_01", "Sensor_10"}
??
I am having some trouble with understanding all the symbols, (dyslexia)
How do I use Regex to remove "Sensor_" from a data set? this is example set, ["Sensor_01", "Sensor_10"}
??
I am having some trouble with understanding all the symbols, (dyslexia)
No need for regex here, simply replace all instances of "Sensor_" with nothing. This should help.
like this: