string value = "ab+0.1973-1.1";
string result = Regex.Replace(value, @"(\.\d{2})\d+", "$1");
string inputString = "ab+0.1973-1.1";
var result = new StringBuilder();
bool hasDot = false;
int digits = 0;
foreach(char ch in inputString)
{
if (char.IsDigit(ch) && hasDot)
{
digits++;
}
else
{
digits = 0;
hasDot = (ch == '.');
}
if (digits <= 2)
{
result.Append(ch);
}
}
Console.WriteLine(result.ToString());
#if NET40
// код для .NET 4.0
#else
// код для остальных версий
#enif
var url = new Uri("http://site.com/index.php?199|¶m=1", true);
// ...
var response = wb.UploadValues(url, "POST", data);
using (var client = new HttpClient())
{
var url = new Uri("http://site.com/index.php?199|¶m=1", true);
var data = new StringBuilder();
data.AppendLine("abc=199|");
using (var content = new StringContent(data.ToString(), Encoding.UTF8, "application/x-www-form-urlencoded"))
{
using (var request = new HttpRequestMessage(HttpMethod.Post, url))
{
request.Content = content;
using (var response = client.SendAsync(request).Result)
{
response.EnsureSuccessStatusCode();
// var result = await response.Content.ReadAsStringAsync();
var result = response.Content.ReadAsStringAsync().Result;
}
}
}
}
WorkTimeLabel.Content = $"Рабочее время: {DateTime.Now.Subtract(timeStart).ToString(@"hh\:mm")}";
WorkTimeLabel.Content = "Рабочее время: " +
(DateTime.Now - timeStart).ToString(@"d\д\ hh\:mm").TrimStart('0', 'д').Trim();
static Action lastAction = null;
static void AnyAction()
{
Console.WriteLine("Выполняю какое-то действие. Не отключайтесь...");
Thread.Sleep(3000);
}
static void Repeat()
{
Console.WriteLine("Хотите повторить? [Д/н]");
if (char.ToUpper(Console.ReadKey().KeyChar) == 'Д')
{
Console.WriteLine();
lastAction();
Repeat();
}
}
static void Main(string[] args)
{
lastAction = AnyAction;
lastAction();
Repeat();
}
static Queue<Action> actions = new Queue<Action>();
static void AnyAction()
{
Console.WriteLine("Выполняю какое-то действие. Не отключайтесь...");
Thread.Sleep(3000);
}
static void Main(string[] args)
{
actions.Enqueue(AnyAction);
while (actions.Count > 0)
{
actions.Dequeue()();
Console.WriteLine("Хотите повторить? [Д/н]");
if (char.ToUpper(Console.ReadKey().KeyChar) == 'Д')
{
Console.WriteLine();
actions.Enqueue(AnyAction);
}
}
}
treeView1.Items.Clear();
GetFiles("C:/Windows/Microsoft.NET", null);
private void GetFiles(string path, TreeViewItem parent)
{
var node = new TreeViewItem() { Header = System.IO.Path.GetFileName(path) };
if (parent == null)
{
treeView1.Items.Add(node);
}
else
{
parent.Items.Add(node);
}
var attr = System.IO.File.GetAttributes(path);
if (attr.HasFlag(System.IO.FileAttributes.Directory))
{
var directories = System.IO.Directory.GetDirectories(path);
foreach (var dir in directories)
{
GetFiles(dir, node);
}
var files = System.IO.Directory.GetFiles(path);
foreach (var file in files)
{
node.Items.Add(System.IO.Path.GetFileName(file));
}
}
}
@for (int i = 0, count = Model.Count; i < count; ++i)
{
@Html.TextAreaFor(m => m[i].Html, new { @class = "Width500", @style = "height:130px;" })
}
$db_table = "articles"; // Имя Таблицы БД
if (!$mysqli->query($query)) {
printf("Errormessage: %s\n", $mysqli->error);
}
var xml = @"<head>
<block1>
<block_header></block_header>
<block_picture></block_picture>
<block_text></block_text>
</block1>
<block2></block2>
<block3>
<block_header></block_header>
<block_picture></block_picture>
<block_text></block_text>
</block3>
</head>";
var doc = new XmlDocument();
doc.LoadXml(xml);
var head = doc.SelectSingleNode("/head");
var list = new List<string>();
foreach (XmlNode node in head.ChildNodes)
{
list.Add(node.Name);
// node.InnerXml - содержимое узла
Console.WriteLine("{0}={1}", node.Name, node.InnerXml);
}
// в коллекции list будет список имен дочерних узлов корневого узла
var doc = new XmlDocument();
// определение переменной xml см. в предыдущем коде
doc.LoadXml(xml);
// создаем стек
var stack = new Stack<XmlNode>();
// добавляем в стек корневой элемент
stack.Push(doc.SelectSingleNode("/head"));
// var list = new List<string>();
// перебираем все элементы стека
while(stack.Count > 0)
{
// берем верхний элемент и удаляем его и стека
var node = stack.Pop();
// выводим
// если требуется, можно добавить в коллекцию
// list.Add(node.Name);
Console.WriteLine("Node: {0}, childs: {1}", node.Name, node.ChildNodes.Count);
Console.WriteLine(node.InnerXml);
// если есть дети, добавляем их в стек
if (node.ChildNodes.Count > 0)
{
// берем с конца, чтобы сохранить порядок
for (int i = node.ChildNodes.Count - 1; i >= 0; --i)
{
stack.Push(node.ChildNodes[i]);
}
}
}
using System.Xml;
var xml = @"<head>
<block1></block1>
<block2></block2>
<block3></block3>
</head>";
var doc = new XmlDocument();
doc.LoadXml(xml);
var node = doc.SelectSingleNode("/head/block3");
if (node != null)
{
Console.WriteLine("Узел существует!");
}
else
{
Console.WriteLine("Узел не найден...");
}
(
<Form
onSubmit={onSubmit}
subscription={{ dirty: true }}
initialValues={{ foo: 'bar' }}
>
{({ handleSubmit }) => (
<form onSubmit={handleSubmit}>
<Field name="foo" component="input" />
<button type="submit">Submit</button>
</form>
)}
</Form>
)
using System.Net.Http;
using System.Text;
using (var client = new HttpClient())
{
var url = "https://dns.api.gandi.net/api/v5/zones/93cc9312-a214-408b-a75b-9d4172984746/records";
// можно просто строку (string) сделать, как будет удобно
var data = new StringBuilder();
data.AppendLine("www IN A 192.168.0.1");
data.AppendLine(" IN A 192.168.0.2");
data.AppendLine(" IN A 192.168.0.2");
data.AppendLine("@ IN MX 10 spool.mail.gandi.net.");
using (var content = new StringContent(data.ToString(), Encoding.UTF8, "text/plain"))
{
// HttpMethod.Post, если нужен POST
using (var request = new HttpRequestMessage(HttpMethod.Put, url))
{
// request.Headers.Authorization = new AuthenticationHeaderValue("", "");
request.Headers.Add("X-Api-Key", "$APIKEY");
request.Content = content;
// using (var response = await client.SendAsync(request)
using (var response = client.SendAsync(request).Result)
{
// выбросить исключение, если сервер вернул ошибку
response.EnsureSuccessStatusCode();
// var result = await response.Content.ReadAsStringAsync();
var result = response.Content.ReadAsStringAsync().Result;
// в result будет ответ сервера
}
}
}
}