菜鸟教程小白 发表于 2022-12-13 04:43:50

ios - 使用 NSArray 值有效地创建占位符模板 NSString


                                            <p><p>我正在尝试为 FMDB 创建一个实用方法,该方法将采用 NSArray 值并根据数组中值的数量返回一个占位符字符串,以在 IN 语句中使用。</p>

<p>我想不出一个优雅的方法来创建这个字符串,我是否缺少一些 NSString 实用方法:</p>

<pre><code>// The contents of the input aren&#39;t important.
NSArray *input = @[@(55), @(33), @(12)];   

// Seems clumsy way to do things:
NSInteger size = ;
NSMutableArray *placeholderArray = [ initWithCapacity:size];
for (NSInteger i = 0; i &lt; size; i++) {
    ;
}

NSString *output = ;
// Would return @&#34;?,?,?&#34; to be used with input
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这个怎么样?</p>

<pre><code>NSArray *input = @[@(55), @(33), @(12)];

NSUInteger count = ;
NSString *output = [@&#34;&#34; stringByPaddingToLength:(2*count-1) withString:@&#34;?,&#34; startingAtIndex:0];
// Result: ?,?,?
</code></pre>

<p><code>stringByPaddingToLength</code> 填充给定的字符串(本例中为空字符串)
通过附加模式 <code>@"?,"</code>.</p> 中的字符来达到给定的长度</p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 NSArray 值有效地创建占位符模板 NSString,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19384072/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19384072/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 NSArray 值有效地创建占位符模板 NSString