Tag: string

如何在Python中打印对象列表时应用__str__函数

那么这个交互式的Python控制台片断将告诉一切: >>> class Test: … def __str__(self): … return 'asd' … >>> t = Test() >>> print(t) asd >>> l = [Test(), Test(), Test()] >>> print(l) [__main__.Test instance at 0x00CBC1E8, __main__.Test instance at 0x00CBC260, __main__.Test instance at 0x00CBC238] 基本上我打印列表时打印三个string。 我也尝试过pprint但它给出了相同的结果。

javascript正则expression式来检查IP地址

我有几个IP地址,如: 115.42.150.37 115.42.150.38 115.42.150.50 如果我想search所有3个IP地址,我应该写什么types的正则expression式? 例如,如果我做115.42.150.* (我将能够search所有3个IP地址) 我现在可以做的是这样的:/[ /[0-9]{1-3}\.[0-9]{1-3}\.[0-9]{1-3}\.[0-9]{1-3}/但它似乎无法正常工作。 谢谢。

修改一个char * conststring

我知道const char *是一个指向const char *的指针,而char *const是一个指向char的常量指针。 我正在testing下面的代码: const char *s = "hello"; // Not permitted to modify the string "hello" char *const t = "world"; // Not permitted to modify the pointer t s = "hello2"; // Valid // t = "world2"; // Invalid, gives compilation error // *(s + 1) = 'a'; // Invalid, […]

如何通过“string名称”获得控制属性?

我已经创buildbutton和文本框通过编码在下一个循环,结果 'T(x).Name = "text_1" 'T(x).Name = "text_2" 'T(x).Name = "text_3" '…. 'B(x).Name = "button_1" 'B(x).Name = "button_2" 'B(x).Name = "button_3" '… 我想获得textbox属性当我点击button时,我可以得到button属性,当点击button_1.Name.ToString但我不能得到text_1,2,3 ….属性。 我做一些伎俩通过分割functionbutton_1.Name.ToString并获取最后一个数字,并将其添加到文本框的名称,如"text_" & button_1.Name.ToString但我不能将此string转换为对象。 更新 这里是我用来加载循环中的控件的代码: C_A_TEXT(x) = New TextBox() C_A_TEXT(x).Dock = System.Windows.Forms.DockStyle.Fill C_A_TEXT(x).Location = New System.Drawing.Point(270, 5) C_A_TEXT(x).Margin = New System.Windows.Forms.Padding(0) C_A_TEXT(x).Size = New System.Drawing.Size(70, 27) C_A_TEXT(x).TabIndex = 5 C_A_TEXT(x).Name = "NEW_RECHARGE_COUNT_TEXT_" […]

C / C ++:优化指向string常量的指针

看看这个代码: #include <iostream> using namespace std; int main() { const char* str0 = "Watchmen"; const char* str1 = "Watchmen"; char* str2 = "Watchmen"; char* str3 = "Watchmen"; cerr << static_cast<void*>( const_cast<char*>( str0 ) ) << endl; cerr << static_cast<void*>( const_cast<char*>( str1 ) ) << endl; cerr << static_cast<void*>( str2 ) << endl; cerr << static_cast<void*>( […]

在Python中列出的string

嗨,我很新的编程,我想分割一个string: 'QH QD JC KD JS' 列入如下列表中: ['QH', 'QD', 'JC', 'KD', 'JS'] 我试过分裂,但似乎没有工作。 我怎么去做这个? 谢谢

string跨翻译单位的文字地址

我想问问是否可移植性依赖跨翻译单位的string文字地址? 即: 一个给定的文件foo.c引用了一个string文字"I'm a literal!" ,它是正确的和可移植的依赖在其他给定的文件, bar.c在实例, 相同的string文字 "I'm a literal!" 会有相同的内存地址 ? 考虑到每个文件将被翻译成个人.o文件。 为了更好地说明,请遵循一个示例代码: # File foo.c /* … */ const char * x = "I'm a literal!" # File bar.c /* … */ const char * y = "I'm a literal!" # File test.c /* … */ extern const char * x; extern […]

我怎样才能在Python中将string转换为int?

我得到我的小示例应用程序的输出如下: Welcome to the Calculator! Please choose what you'd like to do: 0: Addition 1: Subtraction 2: Multiplication 3: Division 4: Quit Application 0 Enter your first number: 1 Enter your second number: 1 Your result is: 11 这是因为addition()方法将input()作为string而不是数字。 我怎样才能将它们用作数字? 这是我的整个脚本: def addition(a, b): return a + b def subtraction(a, b): return a – b […]

Swift,string和内存地址

有什么我不理解如何Swiftpipe理String(s)内存地址String(s) 1.引用types 这里foo和boo是指向相同内存位置的 2个指针。 class Foo { } let foo = Foo() let boo = foo unsafeAddressOf(foo) // "UnsafePointer(0x7FCD13719BE0)" unsafeAddressOf(boo) // "UnsafePointer(0x7FCD13719BE0)" 好。 2.值types let word0 = "hello" let word1 = word0 现在word0和word1是value types但是这里涉及copy on write机制的copy on write 。 但是,Swift只有在绝对必要的情况下才会在幕后执行实际的复制。 Swiftpipe理所有值复制以确保最佳性能,并且您不应该避免分配尝试抢占此优化。 https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/ClassesAndStructures.html#//apple_ref/doc/uid/TP40014097-CH13-XID_134 那为什么他们有两个不同的内存地址? unsafeAddressOf(word0) // "UnsafePointer(0x7FCD1342ACE0)" unsafeAddressOf(word1) // "UnsafePointer(0x7FCD13414260)" 3.更多 另外请注意, String是一个符合 AnyObject的struct 。 testing了Xcode […]

Html.DisplayFor十进制格式?

我有一个十进制值,例如: 59625879,00 我想显示这样的值: 59.625,879或59625,879 我怎样才能做到这一点@Html.DisplayFor(x => x.TAll, String.Format()) ? 谢谢。