如何搜索特定单词并具有可变数字

时间:2013-12-19 16:17:02

标签: arrays variables search numbers

我想在文本文件中找到旁边的一些特定单词和变量数字, 就像“People:700”你看到“People”是固定的,但“700”可以是任何其他数字所以我想找到这个有任何数字的短语,我尝试使用数组,但它不适合我。请一些建议。

2 个答案:

答案 0 :(得分:1)

您可以使用正则表达式匹配数字:

/People: (\d+)/

答案 1 :(得分:0)

在大多数编程语言中,这是你应该做的事情

1. Open the file for reading

2. While you can still read from the file

3. Read a line and store it to a variable

4. split the variable by delimiter (in your case, "People: " and " ")

5. get the value you want and store it into an array(or list)