在本地import re
hostNumber = str('c0001230')
hostNumr = re.sub('[^0-9]', '', hostNumber)
hostChar = re.sub(r'[0-9]+', '', hostNumber)
hostNumber = hostChar + str(int(hostNumr))
print(int(hostNumr), hostChar, hostNumber)
中,我可以轻松地将git编辑器设置为Visual Studio Code。
strip
这将在当前工作空间中打开编辑器。有什么方法可以配置它以在新的工作区中打开?
答案 0 :(得分:3)
我认为using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Management.Infrastructure;
using Microsoft.Management.Infrastructure.Generic;
using Microsoft.Management.Infrastructure.Options;
namespace MMITest
{
class Program
{
static void Main(string[] args)
{
using (var session = CimSession.Create("localhost"))
{
using (var cimMethodParameters = new CimMethodParametersCollection())
{
cimMethodParameters.Add(CimMethodParameter.Create("Name", @"\\PrintServerName\PrinterName", CimFlags.Parameter));
session.InvokeMethod(@"root\cimv2", "Win32_Printer", "AddPrinterConnection", cimMethodParameters);
}
}
Console.ReadLine();
}
}
标志可以解决问题。 (Casually mentioned here)