Tag: string

在Eclipse中的所有文件中replacestring

你知道我怎么能search一个stringreplace我的项目的所有文件中的string? 比方说,我有这个string“/网站/默认/现在我想要它”/公共/网站/默认 但有近1000个文件。 先谢谢你。

如何找出string的第一个字符是数字?

在Java中,有一种方法可以确定一个string的第一个字符是否是一个数字? 一种方法是 string.startsWith("1") 并一直做到9,但这似乎是非常低效的。

string连接在SQLite中不起作用

我正在尝试执行一个SQlitereplace函数,但在函数中使用另一个字段。 select locationname + '<p>' from location; 在这个snip中,结果是一个0的列表。 我会期望一个string与来自locationname和'<p>'文字的文本。

在Perl中,如何将整个文件读入string?

我试图打开一个.html文件作为一个很大的长string。 这是我得到的: open(FILE, 'index.html') or die "Can't read file 'filename' [$!]\n"; $document = <FILE>; close (FILE); print $document; 这导致: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN 不过,我希望结果如下所示: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 这样我可以更轻松地search整个文档。

逐行读取string

给定一个不太长的string,最好的方法是逐行读取它? 我知道你可以这样做: BufferedReader reader = new BufferedReader(new StringReader(<string>)); reader.readLine(); 另一种方法是采取在EOL的子string: final String eol = System.getProperty("line.separator"); output = output.substring(output.indexOf(eol + 1)); 任何其他更简单的方法呢? 我对上述方法没有任何问题,只是有兴趣知道是否有人知道可能看起来更简单,更有效率的东西?

如何使用python-3.x中的字典格式化string?

我是使用字典格式化string的忠实粉丝。 它帮助我阅读我正在使用的string格式,并让我利用现有的字典。 例如: class MyClass: def __init__(self): self.title = 'Title' a = MyClass() print 'The title is %(title)s' % a.__dict__ path = '/path/to/a/file' print 'You put your file here: %(path)s' % locals() 但是,我不能找出python 3.x语法来做同样的事情(或者甚至可能)。 我想做以下事情 # Fails, KeyError 'latitude' geopoint = {'latitude':41.123,'longitude':71.091} print '{latitude} {longitude}'.format(geopoint) # Succeeds print '{latitude} {longitude}'.format(latitude=41.123,longitude=71.091)

如何从string中间执行文化敏感的“开始”操作?

我有一个比较模糊的要求,但是觉得应该可以使用BCL。 对于上下文,我正在parsing日野时间的date/时间string。 我为inputstring中的位置维护一个逻辑光标。 所以虽然完整的string可能是“2013年1月3日”,但逻辑光标可能在“J”处。 现在,我需要parsing月份名称,并将其与文化的所有已知月份名称进行比较: 文化敏感 不区分大小写 只是从光标的angular度来看(不会晚;我想看看光标是否在“看着”候选人的月份名称) 很快 …之后我需要知道使用了多less个字符 当前的代码通常使用CompareInfo.Compare 。 实际上是这样的(只是匹配的部分 – 实际上有更多的代码,但与匹配无关): internal bool MatchCaseInsensitive(string candidate, CompareInfo compareInfo) { return compareInfo.Compare(text, position, candidate.Length, candidate, 0, candidate.Length, CompareOptions.IgnoreCase) == 0; } 然而,这依赖于候选人和我们比较的地区是相同的长度。 大部分时间都好,但在一些特殊情况下不好 。 假设我们有这样的东西: // U+00E9 is a single code point for e-acute var text = "xb\u00e9d y"; int position = 2; […]

在C#中获取当前目录名(的最后部分)

我需要获取当前目录的最后部分,例如从/Users/smcho/filegen_from_directory/AIRPassthrough ,我需要获得AIRPassthrough 。 用python,我可以用这个代码来得到它。 import os.path path = "/Users/smcho/filegen_from_directory/AIRPassthrough" print os.path.split(path)[-1] 要么 print os.path.basename(path) 我怎样才能用C#做同样的事情? 添加 在回答者的帮助下,我find了我需要的东西。 using System.Linq; string fullPath = Path.GetFullPath(fullPath).TrimEnd(Path.DirectorySeparatorChar); string projectName = fullPath.Split(Path.DirectorySeparatorChar).Last(); 要么 string fullPath = Path.GetFullPath(fullPath).TrimEnd(Path.DirectorySeparatorChar); string projectName = Path.GetFileName(fullPath);

如何在Excel VBA中将整数转换为string?

如何在Excel VBA中将integer数值“45”转换为string值“45”?

如何将string更改为QString?

什么是最基本的方法呢?