C # Some common tricks code

Source: Internet
Author: User

1, string style into a character array;

such as the string: 23$123$45$ converted to int[] Such an array, how do you convert? In fact, you don't have to write that for loop, just a word:

 

int [] relst =array.convertall<string,int> (Saleids.trim (','). Split (','),s=>long. Parse (s));

2, remove the special characters of the tail:

For example, the string: $abcdnt 87* in the * and $ removed, how to do, in fact, you do not have to say the index location:

("$abcdnt 87*"). Trim ('$'). Trim ('*')

。。。。。。。 Cond.......

C # Some common tricks code

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.