I am not sure what programming language that you are programming for, but I will assume Python/Java/C++.
Python:
points = "200"
points_Integer = int(points)
Java:
String points = "200"
int points_Integer = Integer.parseInt(points)
C++:
string points = "200";
int points_integer;
points_integer = (int) points;
I hope that this helps!