博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IDL create a empty string
阅读量:2441 次
发布时间:2019-05-10

本文共 304 字,大约阅读时间需要 1 分钟。

I would like to create a blank string of length 1024. (That is, my string contains 1024 spaces.) What is the best way to do this in IDL?

 The best way to do this is to simply use the ASCII character representation of the space character, which is 32B, like this:

blankString = String(Replicate(32B, 1024))

转载地址:http://mtiqb.baihongyu.com/

你可能感兴趣的文章
oracle审计
查看>>
typeof运算符_JavaScript typeof运算子
查看>>
react 前端拆分_React中的代码拆分
查看>>
jsonp_JSONP指南
查看>>
如何禁用ESLint规则
查看>>
如何在macOS上安装PostgreSQL
查看>>
mysql用户权限_MySQL用户权限
查看>>
JavaScript切换条件
查看>>
在邮件标头中找到无效的字符_在Express中使用HTTP标头
查看>>
express 邮件发送_使用Express发送回复
查看>>
react生命周期_React生命周期事件
查看>>
叶节点到根节点的路径_节点路径模块
查看>>
前端测试简介
查看>>
如何查找公共子字符串长度_如何在C中查找字符串的长度
查看>>
javascript运算符_JavaScript比较运算符
查看>>
字符串tostring_字符串toString()方法
查看>>
number.isnan_Number isNaN()方法
查看>>
虚拟dom_虚拟DOM
查看>>
vue组件引入scss变量_如何将SCSS与Vue.js单个文件组件一起使用
查看>>
开发人员,学习营销
查看>>