Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

jQuery remove last character from string if comma

JQuery Remove Last Character From String If Comma

Tags | remove last character from string jquery, remove last comma from string jquery,  remove last comma from string JavaScript

How to remove the last character from string

jQuery is a fast, small, and feature-rich JavaScript library. The purpose of jQuery is to make it much easier to use JavaScript on your website. You can use the JavaScript substring() method to trim first and last character from the string.

Example :

var myString = "JavaScript";
        var newString = myString.substr(0, myString.length - 4);

        // Result is now "JavaSc"

        var myString = "JavaScript";
        var newString = myString.substr(2);

        // Result is now "vaScript"

In this tutorial, I will remove the last character from a string using jquery by using jquery Splice().

Remove last character from string javascript jquery

Use this below code to remove the last character from a string:-

  • Convert JSON Date to Javascript Date Format


    remove last comma from string

Remove last comma from string using jquery

Download Source Code

Did you find this post useful? I hope you liked this article. Please share with me your valuable suggestions and feedback.

The post jQuery remove last character from string if comma appeared first on Dot Net Tutorial, C# Tutorial, Google Maps API JavaScript, Dot Net Tricks.



This post first appeared on Asp Dot Net Tricks And Tips, Dot Net Coding Tips, Google Maps API Developer, please read the originial post: here

Share the post

jQuery remove last character from string if comma

×

Subscribe to Asp Dot Net Tricks And Tips, Dot Net Coding Tips, Google Maps Api Developer

Get updates delivered right to your inbox!

Thank you for your subscription

×