我正在一个数据库项目中,我想在其中创建一个数组,如下所示:

unsigned char* drillSize[][10] = {
{"0.3678",  "23.222",  "MN", "89000", ".000236", "678", "ZX", "8563", "LX", "0.678"},

{"0.3678",  "23.222",  "MN", "89000", ".000236", "678", "ZX", "8563", "LX", "0.678"},
.
.
.
 //around 6000 rows                              }


我已经在Microsoft Word文件中提供了此数据。如果要手动输入数据,则可能要花几周的时间。有没有办法通过某种方式为每个元素插入逗号和反逗号?

最佳答案

您可以尝试使用正则表达式。

如果数据的结构类似于csv文件,则可以通过某种方式将其导入程序中,然后使用基本的字符串函数将其切成片。

在PHP中我会

$input = file_get_contents($myfile) //lets say this contains a text: 1,2,3,4,5
$sliced = explode(",",$input);
$myarray = null; //our variable
$output = "\$myarray = new array("; //creating a template for an array as a String
//some logic with the $sliced array if you need
...
$output .= implode(",",$sliced); //we put it back as string
$output .= ");"; //close the array
eval($output); //after this its in php's scope
print_r($myarray);


基本上,这就是您需要的更复杂的形式。如果文本不是那么结构化,则可能需要一些C的正则表达式库,但是我建议您使用Python,Perl或具有更多支持和更灵活功能的文本创建文本,然后将代码手动复制回C。

09-30 22:20
查看更多