我正在创建一个config.js文件,其中包括一个名为contextTokenObject的对象
//This holds context information or the information which will be transferred at various places of the app
let contextToken = {}
module.exports = {
contextToken
}
现在,我想从另一个文件中向上下文对象添加属性和方法(当我创建护照策略时)。
与其粘贴整个代码,不如在这个passport.js file文件中考虑passport
public void check(String str){
for(int i =0; i<str.length(); i++){
//Print only the numbers
}
}
在for循环中,我希望能够通过字符串找到前两个数字。我该怎么做?
示例:
str= 1 b 3 s 4
印刷:1 3