Questions tagged «string»

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


5
如何在Rust中将字符串与字符串文字进行匹配?
我试图找出如何匹配StringRust 中的一个。 我最初尝试像这样进行匹配,但是我发现Rust不能隐式地从转换std::string::String为&str。 fn main() { let stringthing = String::from("c"); match stringthing { "a" => println!("0"), "b" => println!("1"), "c" => println!("2"), } } 这有错误: error[E0308]: mismatched types --> src/main.rs:4:9 | 4 | "a" => println!("0"), | ^^^ expected struct `std::string::String`, found reference | = note: expected type `std::string::String` found …
199 string  match  rust 



11
返回字符串,不带斜杠
我有两个变量: site1 = "www.somesite.com"; site2 = "www.somesite.com/"; 我想做这样的事情 function someFunction(site) { // If the var has a trailing slash (like site2), // remove it and return the site without the trailing slash return no_trailing_slash_url; } 我该怎么做呢?


7
使用split(“ |”)通过管道符号分割Java字符串
Java官方文档指出: "boo:and:foo"例如,字符串使用这些表达式Regex Result产生以下结果: { "boo", "and", "foo" }" 这就是我需要它工作的方式。但是,如果我运行此命令: public static void main(String[] args){ String test = "A|B|C||D"; String[] result = test.split("|"); for(String s : result){ System.out.println(">"+s+"<"); } } 它打印: >< >A< >|< >B< >|< >C< >|< >|< >D< 这与我的预期相去甚远: >A< >B< >C< >< >D< 为什么会这样呢?
195 java  regex  string 




16
我可以将C#字符串值转换为转义的字符串文字吗
在C#中,我可以像在代码中一样将字符串值转换为字符串文字吗?我想将制表符,换行符等替换为其转义序列。 如果此代码: Console.WriteLine(someString); 产生: Hello World! 我想要这段代码: Console.WriteLine(ToLiteral(someString)); 生产: \tHello\r\n\tWorld!\r\n
195 c#  string  escaping 

10
将查询字符串解析为数组
如何将下面的字符串转换为数组? pg_id=2&parent_id=2&document&video 这是我要寻找的阵列, array( 'pg_id' => 2, 'parent_id' => 2, 'document' => , 'video' => )
195 php  arrays  string 


10
Python CSV字符串到数组
有人知道一个简单的库或函数来解析csv编码的字符串并将其转换为数组或字典吗? 我不认为我想要内置的csv模块,因为在所有示例中,我看到的都是文件路径,而不是字符串。
195 python  string  arrays  csv 


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.