我对文件中的数据有疑问。文本文件中的数据如下所示:
ADSE64E...Mobile phone.....................
EDW8......Unknown item.....................
CAR12.....Peugeot 206 with red colour......
GJ........Parker model 2...................
Por887W8..Black coffe from Peru............
点代表空格。第一列是 Product_Code(长 1-10),第二列(长 1-255)是描述。我需要的是:
ADSE64E;Mobile phone
EDW8;Unknown item
CAR12;Peugeot 206 with red colour
GJ;Parker model 2.
Por887W8;Black coffe from Peru
我的解决方案是:
第一列到达变量(与第二列相同的过程)并将两个变量合并为一个..但我不知道如何..
$variabletxt = 获取内容 C:\Product.txt
$firstcolumn = $variablestxt.substring(1,10)
$secondcolumn = $variablestxt.substring(10)
$最终 = ???
替换空格,但问题是 product_code 可能长 1-10。
你有什么建议我如何解决这个问题?