Snippet. Vala. Convert String to IntegerTo convert a String to integer (int) in Vala use the int.parse() method. int number = int.parse("123"); Warning. The to_int() method used in previous versions of Vala is deprecated and will result in warning: string string_number = "123"; int number = string_number.to_int(); Result: warning: string.to_int is deprecated. Use int.parse Updated on: 22 Feb 2025 |
|