将字符串拆分为数字的最佳方法

huangapple go评论60阅读模式
英文:

Optimal way to split string into number

问题

我有一个字符串,格式如下
XXXXYYYZZ
这里的XXXX,YYY和ZZ是数字。
我想从字符串中获取XXXX,YYY和ZZ。我以前使用子字符串来找到它。

这是最佳方法吗,还是有其他更优化的方法。

英文:

I've a string in following format
XXXXYYYZZ
Here XXXX, YYY && ZZ are numbers.
I want to get XXXX, YYY and ZZ From the string. I was using sub string to find it.

Is it the best way, or is there any other optimal way.

答案1

得分: 1

如果字符串长度固定,您可以使用Substring()方法:

string input = "123456789";
string x = input.Substring(0, 4);
string y = input.Substring(4, 3);
string z = input.Substring(7, 2);

如果希望将结果作为数字处理,使用int类型将更加高效:

int intInput = int.Parse(input);
var xInt = intInput / 100000;
var yInt = intInput % 100000 / 100;
var zInt = intInput % 100;
英文:

If the length of the string is fixed. you can use Substring():

string input = "123456789";
string x = input.Substring(0, 4); 
string y = input.Substring(4, 3); 
string z = input.Substring(7, 2);

If you want the result as a number, working with int will be more optimal:

int intInput = int.Parse(input);
var xInt = intInput / 100000;
var yInt = intInput % 100000 / 100;
var zInt = intInput % 100;

huangapple
  • 本文由 发表于 2023年3月1日 12:14:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/75599508.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定