I Want Number Before Symbol In Flutter

[Solved] I Want Number Before Symbol In Flutter | Dart - Code Explorer | yomemimo.com
Question : i want number before % symbol in flutter

Answered by : aggressive-anaconda-nc7jq9dksvyx

void main() { String str = "one.two"; print(str.replaceAll(".two", "")); // or print(str.split(".").first); // or String newStr = str.replaceRange(str.indexOf("."), str.length, ""); print(newStr); // Lets do a another example String nums = "1,one.2,two.3,three.4,four"; List values = nums.split("."); // split() will split from . and gives new List with separated elements. values.forEach(print); //output
// 1,one
// 2,two
// 3,three
// 4,four
}

Source : https://stackoverflow.com/questions/59763793/flutter-remove-string-after-certain-character | Last Update : Sun, 03 Jan 21

Answers related to i want number before symbol in flutter

Code Explorer Popular Question For Dart