Mam wymaganie, aby znaleźć i wyodrębnić liczbę zawartą w ciągu.
Na przykład z tych ciągów:
string test = "1 test"
string test1 = " 1 test"
string test2 = "test 99"
W jaki sposób mogę to zrobić?
1.5
? Notacja wykładnicza jak 1.5E45
?
Mam wymaganie, aby znaleźć i wyodrębnić liczbę zawartą w ciągu.
Na przykład z tych ciągów:
string test = "1 test"
string test1 = " 1 test"
string test2 = "test 99"
W jaki sposób mogę to zrobić?
1.5
? Notacja wykładnicza jak 1.5E45
?
Odpowiedzi:
przejdź przez ciąg i użyj Char.IsDigit
string a = "str123";
string b = string.Empty;
int val;
for (int i=0; i< a.Length; i++)
{
if (Char.IsDigit(a[i]))
b += a[i];
}
if (b.Length>0)
val = int.Parse(b);
b == "System.Linq.Enumerable.."
. Prawidłowe (a nawet prostsze) byłobyb = String.Join("", a.Where(char.IsDigit))
new string(char[])
konstruktora.
\d+
jest wyrażeniem regularnym liczby całkowitej. Więc
//System.Text.RegularExpressions.Regex
resultString = Regex.Match(subjectString, @"\d+").Value;
zwraca ciąg zawierający pierwsze wystąpienie liczby w subjectString
.
Int32.Parse(resultString)
poda ci numer.
Regex.Match(subjectString, @"-?\d+").Value
zamiast tego
Oto jak oczyszczam numery telefonów, aby uzyskać tylko cyfry:
string numericPhone = new String(phone.Where(Char.IsDigit).ToArray());
string numericPhone =new String(phone.Where(Char.IsDigit).ToArray());
użyj wyrażenia regularnego ...
Regex re = new Regex(@"\d+");
Match m = re.Match("test 66");
if (m.Success)
{
Console.WriteLine(string.Format("RegEx found " + m.Value + " at position " + m.Index.ToString()));
}
else
{
Console.WriteLine("You didn't enter a string containing a number!");
}
Regex.Split może wyodrębniać liczby z ciągów. Otrzymasz wszystkie liczby znalezione w ciągu.
string input = "There are 4 numbers in this string: 40, 30, and 10.";
// Split on one or more non-digit characters.
string[] numbers = Regex.Split(input, @"\D+");
foreach (string value in numbers)
{
if (!string.IsNullOrEmpty(value))
{
int i = int.Parse(value);
Console.WriteLine("Number: {0}", i);
}
}
Wynik:
Liczba: 4 Liczba: 40 Liczba: 30 Liczba: 10
Oto Linq
wersja:
string s = "123iuow45ss";
var getNumbers = (from t in s
where char.IsDigit(t)
select t).ToArray();
Console.WriteLine(new string(getNumbers));
"123iuow45ss".AsEnumerable().Where(char.IsDigit)
?
from t .. select t
redundancji, ale i tak na zdrowie.
Kolejne proste rozwiązanie wykorzystujące Regex Powinieneś tego użyć
using System.Text.RegularExpressions;
a kod to
string var = "Hello3453232wor705Ld";
string mystr = Regex.Replace(var, @"\d", "");
string mynumber = Regex.Replace(var, @"\D", "");
Console.WriteLine(mystr);
Console.WriteLine(mynumber);
Możesz także spróbować tego
string.Join(null,System.Text.RegularExpressions.Regex.Split(expr, "[^\\d]"));
Wystarczy użyć RegEx, aby dopasować ciąg, a następnie przekonwertować:
Match match = Regex.Match(test , @"(\d+)");
if (match.Success) {
return int.Parse(match.Groups[1].Value);
}
Oto inne Linq
podejście, które wyodrębnia pierwszą liczbę z ciągu.
string input = "123 foo 456";
int result = 0;
bool success = int.TryParse(new string(input
.SkipWhile(x => !char.IsDigit(x))
.TakeWhile(x => char.IsDigit(x))
.ToArray()), out result);
Przykłady:
string input = "123 foo 456"; // 123
string input = "foo 456"; // 456
string input = "123 foo"; // 123
Dla tych, którzy chcą liczb dziesiętnych z ciągu z wyrażeniem regularnym w DWÓCH wierszach:
decimal result = 0;
decimal.TryParse(Regex.Match(s, @"\d+").Value, out result);
To samo dotyczy pływaka , długiego itp.
string input = "Hello 20, I am 30 and he is 40";
var numbers = Regex.Matches(input, @"\d+").OfType<Match>().Select(m => int.Parse(m.Value)).ToArray();
Możesz to zrobić za pomocą String
właściwości takich jak poniżej:
return new String(input.Where(Char.IsDigit).ToArray());
która daje tylko liczbę z ciągu.
Pytanie nie mówi wprost, że chcesz tylko znaków od 0 do 9, ale nie byłoby łatwo uwierzyć, że to prawda z twojego zestawu przykładów i komentarzy. Oto kod, który to robi.
string digitsOnly = String.Empty;
foreach (char c in s)
{
// Do not use IsDigit as it will include more than the characters 0 through to 9
if (c >= '0' && c <= '9') digitsOnly += c;
}
Dlaczego nie chcesz używać Char.IsDigit () - Liczby obejmują znaki, takie jak ułamki, indeksy dolne, indeks górny, cyfry rzymskie, liczniki walut, liczby otoczone i cyfry specyficzne dla skryptu.
Metoda rozszerzenia, aby uzyskać wszystkie liczby dodatnie zawarte w ciągu:
public static List<long> Numbers(this string str)
{
var nums = new List<long>();
var start = -1;
for (int i = 0; i < str.Length; i++)
{
if (start < 0 && Char.IsDigit(str[i]))
{
start = i;
}
else if (start >= 0 && !Char.IsDigit(str[i]))
{
nums.Add(long.Parse(str.Substring(start, i - start)));
start = -1;
}
}
if (start >= 0)
nums.Add(long.Parse(str.Substring(start, str.Length - start)));
return nums;
}
Jeśli chcesz również liczb ujemnych, po prostu zmodyfikuj ten kod, aby obsługiwał znak minus ( -
)
Biorąc pod uwagę ten wkład:
"I was born in 1989, 27 years ago from now (2016)"
Wynikowa lista numerów będzie:
[1989, 27, 2016]
jeśli liczba ma kropki dziesiętne, możesz użyć poniżej
using System;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
//Your code goes here
Console.WriteLine(Regex.Match("anything 876.8 anything", @"\d+\.*\d*").Value);
Console.WriteLine(Regex.Match("anything 876 anything", @"\d+\.*\d*").Value);
Console.WriteLine(Regex.Match("$876435", @"\d+\.*\d*").Value);
Console.WriteLine(Regex.Match("$876.435", @"\d+\.*\d*").Value);
}
}
}
wyniki:
„cokolwiek 876,8 cokolwiek” ==> 876,8
„cokolwiek 876 cokolwiek” ==> 876
„876435 $” ==> 876435
„876,435 $” ==> 876,435
Przykład: https://dotnetfiddle.net/IrtqVt
Czy na odwrocie jednej z odpowiedzi na to pytanie: Jak usunąć liczby z łańcucha przy użyciu Regex.Replace?
// Pull out only the numbers from the string using LINQ
var numbersFromString = new String(input.Where(x => x >= '0' && x <= '9').ToArray());
var numericVal = Int32.Parse(numbersFromString);
string verificationCode ="dmdsnjds5344gfgk65585";
string code = "";
Regex r1 = new Regex("\\d+");
Match m1 = r1.Match(verificationCode);
while (m1.Success)
{
code += m1.Value;
m1 = m1.NextMatch();
}
Interesujące podejście zapewnia tutaj Ahmad Mageed, wykorzystuje Regex i program budujący ciągi, aby wyodrębnić liczby całkowite w kolejności, w jakiej występują w ciągu.
Przykład użycia Regex.Split na podstawie postu Ahmada Mageeda jest następujący:
var dateText = "MARCH-14-Tue";
string splitPattern = @"[^\d]";
string[] result = Regex.Split(dateText, splitPattern);
var finalresult = string.Join("", result.Where(e => !String.IsNullOrEmpty(e)));
int DayDateInt = 0;
int.TryParse(finalresult, out DayDateInt);
oto moje rozwiązanie
string var = "Hello345wor705Ld";
string alpha = string.Empty;
string numer = string.Empty;
foreach (char str in var)
{
if (char.IsDigit(str))
numer += str.ToString();
else
alpha += str.ToString();
}
Console.WriteLine("String is: " + alpha);
Console.WriteLine("Numeric character is: " + numer);
Console.Read();
Będziesz musiał użyć Regex jako \d+
\d
dopasowuje cyfry w podanym ciągu.
static string GetdigitFromString(string str)
{
char[] refArray = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
char[] inputArray = str.ToCharArray();
string ext = string.Empty;
foreach (char item in inputArray)
{
if (refArray.Contains(item))
{
ext += item.ToString();
}
}
return ext;
}
string s = "kg g L000145.50\r\n";
char theCharacter = '.';
var getNumbers = (from t in s
where char.IsDigit(t) || t.Equals(theCharacter)
select t).ToArray();
var _str = string.Empty;
foreach (var item in getNumbers)
{
_str += item.ToString();
}
double _dou = Convert.ToDouble(_str);
MessageBox.Show(_dou.ToString("#,##0.00"));
Korzystając z odpowiedzi @ tim-pietzcker z góry , następujące będą działać dla PowerShell
.
PS C:\> $str = '1 test'
PS C:\> [regex]::match($str,'\d+').value
1
Na podstawie ostatniej próbki stworzyłem metodę:
private string GetNumberFromString(string sLongString, int iLimitNumbers)
{
string sReturn = "NA";
int iNumbersCounter = 0;
int iCharCounter = 0;
string sAlphaChars = string.Empty;
string sNumbers = string.Empty;
foreach (char str in sLongString)
{
if (char.IsDigit(str))
{
sNumbers += str.ToString();
iNumbersCounter++;
if (iNumbersCounter == iLimitNumbers)
{
return sReturn = sNumbers;
}
}
else
{
sAlphaChars += str.ToString();
iCharCounter++;
// reset the counter
iNumbersCounter = 0;
}
}
return sReturn;
}