Questions tagged «string»

字符串是有限的符号序列,通常用于文本,尽管有时用于任意数据。

6
Android拆分字符串
我有一个名为的字符串CurrentString,其形式像这样 "Fruit: they taste good"。我想CurrentString使用:分隔符。这样一来,单词"Fruit"将被拆分成自己的字符串,"they taste good"并将成为另一个字符串。然后我只想使用SetText()2种不同的TextViews字符串来显示该字符串。 解决此问题的最佳方法是什么?
227 java  android  string 

14
是否可以更新本地化的情节提要的字符串?
我通过创建base.lproj故事板和3个字符串文件来本地化应用程序的一部分。大约一个月前,此后,我向应用程序添加了新的视图控制器,但是此控制器的按钮和标签未出现在字符串文件中 是否可以更新这3个故事板附带的字符串文件,或者我必须使用NSLocalizableString和Localizable.strings以编程方式添加新的字符串转换?

3
评论“ frozen_string_literal:true”有什么用?
这是rspec我的项目目录中的binstub。 #!/usr/bin/env ruby begin load File.expand_path("../spring", __FILE__) rescue LoadError end # frozen_string_literal: true # # This file was generated by Bundler. # # The application 'rspec' is installed as part of a gem, and # this file is here to facilitate running it. # require "pathname" ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", Pathname.new(__FILE__).realpath) …





12
PHP-连接或直接在字符串中插入变量
我想知道,将PHP变量插入字符串的正确方法是什么? 这条路: echo "Welcome ".$name."!" 或者这样: echo "Welcome $name!" 这两种方法都可以在我的电脑上使用PHP v5.3.5。后者更短,更简单,但是我不确定第一种格式是否更好或是否被认为更合适。





8
检查字符串是否以列表中的字符串之一结尾
编写以下代码的pythonic方法是什么? extensions = ['.mp3','.avi'] file_name = 'test.mp3' for extension in extensions: if file_name.endswith(extension): #do stuff 我有一个模糊的记忆,for可以避免循环的显式声明,并将其写成if条件。这是真的?
220 python  string  list 

27
创建单独变量字典的更简单方法?
我希望能够以字符串的形式获取变量的名称,但是我不知道Python是否具有这么多的自省功能。就像是: >>> print(my_var.__name__) 'my_var' 我想这样做是因为我想将一堆变量变成一个像这样的字典: bar = True foo = False >>> my_dict = dict(bar=bar, foo=foo) >>> print my_dict {'foo': False, 'bar': True} 但是我想要比这更自动的东西。 Python具有locals()和vars(),所以我猜有办法。
220 python  string  variables 

19
如何将字符串放入数组中,并用新行分隔?
我的数据库中有一个带换行符的字符串。我想将该字符串转换为数组,并且对于每一行,在数组中跳一个索引位置。 如果字符串是: My text1 My text2 My text3 我想要的结果是这样的: Array ( [0] => My text1 [1] => My text2 [2] => My text3 )
220 php  string  line-breaks 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.