Remove trailing '/' from rails string

Sam Roberts

So i have this command at the moment, ITs breaking up a URL to get the ID from said URL

The URL has a forward slash on the end. Which is currently bringing in the ID like this

1111111/

I need to remove the forward slash on the end so its like 1111111

Heres what i have at the moment

  var apis = '<%= @event.slink.split('-')[-1] %>';

I have currently already tried putting .gsub on the end however that didnt work (I may have not done this right however)

Thanks

Inpego

Try:

var apis = '<%= @event.slink.split('-')[-1].gsub(/\/$/, '') %>';

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Remove trailing numbers from string js regexp

From Dev

Remove leading and trailing zeros from a string

From Dev

Remove trailing substring from String in Java

From Dev

How to remove a trailing comma from a string (Java)

From Dev

Remove trailing punctuation from concatenated string

From Dev

Remove leading and trailing zeros from a string

From Dev

Remove beginning or trailing comma from delimited string

From Dev

Remove trailing slashes from Query String Apache

From Dev

remove leading and trailing break tags from string

From Dev

Remove trailing string

From Dev

Remove leading and trailing quotes from string if both are present

From Dev

iOS - remove trailing zeros from float WITHOUT converting to String?

From Dev

Javascript remove leading and trailing spaces from multiline string

From Dev

how to remove trailing spaces from the bracket which is a substring of another string

From Dev

Remove leading trailing non numeric characters from a string in Java

From Dev

Remove trailing spaces from each line in a string in ruby

From Dev

how to remove trailing spaces from the bracket which is a substring of another string

From Dev

RegExp: How to remove leading and trailing groups if present from a string

From Dev

How to remove a trailing question mark (empty query string) from the URL?

From Dev

remove trailing zeros from and add decimal point to character string in Excel

From Dev

Remove trailing commas in ruby string

From Dev

Remove Trailing Slash From the URL

From Dev

Remove trailing whitespaces from CSV

From Dev

remove trailing zeros from output

From Dev

Rails: Remove substring from the string if in array

From Dev

Remove all letters from a string column in Rails

From Dev

Remove all space characters from string in Rails

From Dev

Remove trailing slash and create query string with .htaccess

From Dev

Cleanest way to remove trailing blanks a string in swift?

Related Related

  1. 1

    Remove trailing numbers from string js regexp

  2. 2

    Remove leading and trailing zeros from a string

  3. 3

    Remove trailing substring from String in Java

  4. 4

    How to remove a trailing comma from a string (Java)

  5. 5

    Remove trailing punctuation from concatenated string

  6. 6

    Remove leading and trailing zeros from a string

  7. 7

    Remove beginning or trailing comma from delimited string

  8. 8

    Remove trailing slashes from Query String Apache

  9. 9

    remove leading and trailing break tags from string

  10. 10

    Remove trailing string

  11. 11

    Remove leading and trailing quotes from string if both are present

  12. 12

    iOS - remove trailing zeros from float WITHOUT converting to String?

  13. 13

    Javascript remove leading and trailing spaces from multiline string

  14. 14

    how to remove trailing spaces from the bracket which is a substring of another string

  15. 15

    Remove leading trailing non numeric characters from a string in Java

  16. 16

    Remove trailing spaces from each line in a string in ruby

  17. 17

    how to remove trailing spaces from the bracket which is a substring of another string

  18. 18

    RegExp: How to remove leading and trailing groups if present from a string

  19. 19

    How to remove a trailing question mark (empty query string) from the URL?

  20. 20

    remove trailing zeros from and add decimal point to character string in Excel

  21. 21

    Remove trailing commas in ruby string

  22. 22

    Remove Trailing Slash From the URL

  23. 23

    Remove trailing whitespaces from CSV

  24. 24

    remove trailing zeros from output

  25. 25

    Rails: Remove substring from the string if in array

  26. 26

    Remove all letters from a string column in Rails

  27. 27

    Remove all space characters from string in Rails

  28. 28

    Remove trailing slash and create query string with .htaccess

  29. 29

    Cleanest way to remove trailing blanks a string in swift?

HotTag

Archive